Class: MongoMapper::Plugins::Associations::ManyEmbeddedPolymorphicProxy

Inherits:
EmbeddedCollection show all
Defined in:
lib/mongo_mapper/plugins/associations/proxy/many_embedded_polymorphic_proxy.rb

Instance Attribute Summary

Attributes inherited from Proxy

#association, #proxy_owner, #target

Instance Method Summary collapse

Methods inherited from EmbeddedCollection

#<<, #build, #count, #find, #save_to_collection

Methods inherited from Collection

#[], #each, #empty?, #length, #read, #reset, #size, #to_a, #write

Methods inherited from Proxy

define_proxy_method, #initialize, #inspect, #loaded, #loaded?, #proxy_method, #proxy_respond_to?, #read, #reload, #reset, #respond_to?, #write

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(values) ⇒ Object



6
7
8
9
10
11
# File 'lib/mongo_mapper/plugins/associations/proxy/many_embedded_polymorphic_proxy.rb', line 6

def replace(values)
  @_values = values.map do |v|
    v.respond_to?(:attributes) ? v.attributes.merge(association.type_key_name => v.class.name) : v
  end
  reset
end