Method: Representable::Object.included

Defined in:
lib/representable/object.rb

.included(base) ⇒ Object



6
7
8
9
10
11
12
# File 'lib/representable/object.rb', line 6

def self.included(base)
  base.class_eval do
    include Representable
    extend ClassMethods
    register_feature Representable::Object
  end
end