Just add the following line to lib/request.rb:
attr_reader :parameters
This is necessary for the Pay transaction to work correctly. Otherwise
the following addition:
------------
parameter :transaction_amount, :type => Amount
...
class Amount < Remit::Request
parameter :amount
parameter :currency_code
end
--------------
(this was taken from:
http://groups.google.com/group/remit/t/8064984206a6ee37 )
will cause an error in the Request.to_query method. The call to
"options[:type].parameters" errors out since there is no accessor for
parameters for Remit::Request
Once Relax is patched, I will check in the above code for Remit.
Just a few more kinks to work out (see my previous e-mail about
TransactionResponse) and then Pay will work like a charm.
Micah