Module: Renderable::Glue

Defined in:
lib/renderable/glue.rb

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/renderable/glue.rb', line 5

def self.included base      
  base.extend ClassMethods
  base.send :include, Callbacks
  base.send :include, Schema if defined? ActiveRecord
  
  base.class_attribute :renderable_options
end