I am using ActiveMerchant to give my rails app access to Paypal\'s Express Checkout. I would like to include the Order Details on the Review Page as described here: https://cms.
Make sure you have activemerchant version not less than 1.12.0.
activemerchant
1.12.0
EXPRESS_GATEWAY.setup_purchase(220, :items => [{:name => "Tickets", :quantity => 22,:description => "Tickets for 232323", :amount => 10}], :return_url => 'example.com', :cancel_return_url => 'example.com' )
Hope this helps :)