lib/active_merchant/billing/gateways/payu_in.rb in activemerchant-1.86.0 vs lib/active_merchant/billing/gateways/payu_in.rb in activemerchant-1.87.0

- old
+ new

@@ -30,14 +30,14 @@ add_addresses(post, options) add_customer_data(post, options) add_auth(post) MultiResponse.run do |r| - r.process{commit(url('purchase'), post)} + r.process { commit(url('purchase'), post) } if(r.params['enrolled'].to_s == '0') - r.process{commit(r.params['post_uri'], r.params['form_post_vars'])} + r.process { commit(r.params['post_uri'], r.params['form_post_vars']) } else - r.process{handle_3dsecure(r)} + r.process { handle_3dsecure(r) } end end end def refund(money, authorization, options={})