エラーはTenantIdLoader
モジュールの実際のコンテンツとは何の関係もないと確信しています。代わりに、ActiveSupport
依存関係と関係があります。
このエラーを乗り越えられないようです。私が読んだことから、それActiveRecord::Base
はリロードされているかリロードされているためCompany::TenantIdLoader
であり、どういうわけかそれを伝えていません。助けてください!Rails 4.2にアップグレードできるようになりたいです。
編集
Tenant
これは、自動的に再読み込みされるリファレンスを参照しているためです。しかし、実際にクラスを参照できるようにする必要があるので、これを回避する方法を誰かが知っていますか?
config / application.rb
config.autoload_paths += %W( #{config.root}/lib/company )
config / initializers / company.rb
ActionMailer::Base.send(:include, Company::TenantIdLoader)
lib / company / tenant_id_loader.rb
module Company
module TenantIdLoader
extend ActiveSupport::Concern
included do
cattr_accessor :tenant_dependency
self.tenant_dependency = {}
after_initialize do
self.tenant_id = Tenant.active.id if self.class.tenant_dependent? and self.new_record? and Tenant.active.present? and !Tenant.active.zero?
end
end
# class methods to be mixed in
module ClassMethods
# returns true if this model's table has a tenant_id
def tenant_dependent?
self.tenant_dependency[self.table_name] ||= self.column_names.include?('tenant_id')
end
end
end
end