Method: CouchModel::Base#method_missing

Defined in:
lib/couch_model/base.rb

#method_missing(method_name, *arguments, &block) ⇒ Object



92
93
94
95
# File 'lib/couch_model/base.rb', line 92

def method_missing(method_name, *arguments, &block)
  return @attributes[Configuration::CLASS_KEY] if Configuration::CLASS_KEY == method_name.to_s
  super
end