Module: MustacheRender::RenderAble::ForRecord

Defined in:
lib/mustache_render/ables/render_able.rb

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/mustache_render/ables/render_able.rb', line 26

def self.included base
  base.class_eval do
    include ::MustacheRender::RenderAble::SharedMethods
    extend  ClassMethods
    include InstanceMethods
  end
end