Method: Reform::Form::ActiveModel::ClassMethods.extended

Defined in:
lib/reform/form/active_model.rb

.extended(base) ⇒ Object

this module is only meant to extend (not include). # DISCUSS: is this a sustainable concept?



64
65
66
67
68
69
# File 'lib/reform/form/active_model.rb', line 64

def self.extended(base)
  base.class_eval do
    extend Uber::InheritableAttribute
    inheritable_attr :model_options
  end
end