希望有人能为我解释一下......
我有一个导入模块的Site类:
网站
class Site < ActiveRecord::Base
include TrackableChanges
...
在trackable_changes.rb
中我有这段代码..
module TrackableChanges
include ActiveSupport::Callbacks
def self.included(base)
# Initialize module.
base.has_many :change_requests, :as => :model, :dependent => :destroy
#Callbacks
base.before_save :before_save_change_request
base.after_save :after_save_change_request
base.before_destroy :before_destroy_change_request
Facility
end
...
对 Facility 的引用让我很困惑(我在这里放了一个简单的引用..)。基本上在Facility.rb我有这个..
class Facility < ActiveRecord::Base
acts_as_citier
acts_as_citier看起来有点像这样:
module Citier
def self.included(base)
# When a class includes a module the module’s self.included method will be invoked.
base.send :extend, ClassMethods
end
end
ActiveRecord::Base.send :include, Citier
现在..只需在我的初始模块中引用 Facility ,就可以访问acts_as_citier gem并扩展 Site 类的ActiveRecord。我想为我的工厂提供acts_as_citier gem,但不是我的网站。
任何人都可以帮助阻止这包括引入这个不需要的引用的路径!?
修改
似乎我无法引用类Facility,因为它没有引入通过它对gem act_as_citier
城市这样做......
ActiveRecord::Base.send :include, Citier
答案 0 :(得分:0)
class Facility < ActiveRecord::Base
#attr_accessible :name, :type, :facility_type_id, :accessibility_id, :tldc_id, :site_id, :tldc_approved
acts_as_citier if self.to_s == 'Facility' #Protects other classes from accidently getting the AR additions
向include添加条件会阻止acts_as_citier gem扩展任何引用“Facility”的类。
我假设我的网站类包含&gt;通过该模块&gt;当它点击对Facility类的引用时>贯穿Facility.rb&gt;它通过acts_as_citier运行,然后将扩展命中到活动记录行。它帮助我记住.rb文件的每个部分都是可执行文件。