1

I am try to integrate allpay payment.

gem 'rails', '>= 5.0.0.rc1', '< 5.1'

gem 'activemerchant', :require => 'active_merchant'

gem 'active_merchant_allpay'

But i am getting:

uninitialized constant ActiveMerchant::Billing::Integrations::Helper (NameError).

kRiZ
  • 2,320
  • 4
  • 28
  • 39
Govind shaw
  • 407
  • 4
  • 12

1 Answers1

1

You will have to add offsite_payments as a dependency,and update any mentions of ActiveSupport::Billing::Integration to OffsitePayments::Integrations

https://github.com/activemerchant/active_merchant/issues/1357

user757123
  • 19
  • 1