我在rails 4应用程序中集成了gem 'activemerchant', '1.50.0'
。在其中一门课程中,我加入了ActiveMerchant::Validateable
。
class Address
include ActiveMerchant::Validateable
attr_accessor :address1, :address2, :city, :state, :zip, :country, :first_name, :last_name, :phone
end
它给了我NameError (uninitialized constant ActiveMerchant::Validateable)
错误。使用rails 3.2.13可以正常工作。是否有人遇到过这个问题。