我最近安装了 Braintree 支付 gem。它与我的地址模型冲突,因为 Braintree 也有自己的地址模型,所以我将地址模型移动到我自己的模块中。
module MyModule
class Address < ActiveRecord::Base
end
end
但是,每次我使用地址时,我都必须为 MyModule::Address 添加前缀,否则如果我不使用 MyModule 前缀,它默认使用 Braintree::Address。
我如何告诉 Rails 默认使用 MyModule::Address ?