Method: Hemp::Orm::RecordInterface.initialize_model

Defined in:
lib/hemp/orm/record_interface.rb

.initialize_model(row) ⇒ Object



62
63
64
65
66
67
# File 'lib/hemp/orm/record_interface.rb', line 62

def initialize_model(row)
  model = const_get(name).new
  set_instance_vars model, row

  model
end