Module: ModelPack::Constructor
- Defined in:
- lib/model_pack/constructor.rb
Instance Method Summary collapse
Instance Method Details
#initialize(*a) ⇒ Object
3 4 5 6 7 8 |
# File 'lib/model_pack/constructor.rb', line 3 def initialize(*a) attributes = a.pop update_attributes(attributes) if attributes update_attributes(a.pop) if a.last.is_a?(Hash) super(*a) end |