Rails extending ActiveRecord::Base

后端 未结 9 1713
眼角桃花
眼角桃花 2020-11-22 12:38

I\'ve done some reading about how to extend ActiveRecord:Base class so my models would have some special methods. What is the easy way to extend it (step by step tutorial)?<

9条回答
  •  甜味超标
    2020-11-22 13:21

    I have

    ActiveRecord::Base.extend Foo::Bar
    

    in an initializer

    For a module like below

    module Foo
      module Bar
      end
    end
    

提交回复
热议问题