Class: MongoMapper::Plugins::Associations::BelongsToProxy

Inherits:
Proxy
  • Object
show all
Defined in:
lib/mongo_mapper/plugins/associations/belongs_to_proxy.rb

Instance Attribute Summary

Attributes inherited from Proxy

#association, #proxy_owner, #target

Instance Method Summary collapse

Methods inherited from Proxy

#===, #as_json, #blank?, #initialize, #inspect, #loaded, #loaded?, #nil?, #present?, #proxy_respond_to?, #reload, #reset, #respond_to?, #send, #to_json

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

#replace(doc) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/mongo_mapper/plugins/associations/belongs_to_proxy.rb', line 6

def replace(doc)
  if doc
    doc.save if doc.new?
    id = doc.id
  end

  proxy_owner[association.foreign_key] = id
  reload
end