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

#build(attrs = {}) ⇒ Object



21
22
23
# File 'lib/mongo_mapper/plugins/associations/belongs_to_proxy.rb', line 21

def build(attrs={})
  instantiate_target(:new, attrs)
end

#create(attrs = {}) ⇒ Object



25
26
27
# File 'lib/mongo_mapper/plugins/associations/belongs_to_proxy.rb', line 25

def create(attrs={})
  instantiate_target(:create, attrs)
end

#create!(attrs = {}) ⇒ Object



29
30
31
# File 'lib/mongo_mapper/plugins/associations/belongs_to_proxy.rb', line 29

def create!(attrs={})
  instantiate_target(:create!, attrs)
end

#replace(doc) ⇒ Object



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

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

  reset
  proxy_owner[association.foreign_key] = id
  unless doc.nil?
    loaded
    @target = doc
  end
  @target
end

#save_to_collection(options = {}) ⇒ Object



33
34
35
# File 'lib/mongo_mapper/plugins/associations/belongs_to_proxy.rb', line 33

def save_to_collection(options={})
  @target.save(options) if @target
end