Class: MongoMapper::Plugins::Associations::OneEmbeddedProxy
- Defined in:
- lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
Instance Attribute Summary
Attributes inherited from Proxy
#association, #proxy_owner, #target
Instance Method Summary collapse
Methods inherited from Proxy
#===, #blank?, #initialize, #inspect, #loaded, #loaded?, #nil?, #present?, #proxy_respond_to?, #reload, #reset, #respond_to?, #send
Constructor Details
This class inherits a constructor from MongoMapper::Plugins::Associations::Proxy
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class MongoMapper::Plugins::Associations::Proxy
Instance Method Details
#build(attributes = {}) ⇒ Object
6 7 8 9 10 11 |
# File 'lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb', line 6 def build(attributes={}) @target = klass.new(attributes) assign_references(@target) loaded @target end |
#replace(doc) ⇒ Object
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb', line 13 def replace(doc) if doc.respond_to?(:attributes) @target = klass.load(doc.attributes) else @target = klass.load(doc) end assign_references(@target) loaded @target end |