Class: MongoMapper::Plugins::Associations::ManyEmbeddedPolymorphicProxy
- Inherits:
-
EmbeddedCollection
- Object
- Proxy
- Collection
- EmbeddedCollection
- MongoMapper::Plugins::Associations::ManyEmbeddedPolymorphicProxy
- Defined in:
- lib/mongo_mapper/plugins/associations/many_embedded_polymorphic_proxy.rb
Instance Attribute Summary
Attributes inherited from Proxy
Instance Method Summary collapse
Methods inherited from EmbeddedCollection
Methods inherited from Collection
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
#replace(values) ⇒ Object
5 6 7 8 9 10 |
# File 'lib/mongo_mapper/plugins/associations/many_embedded_polymorphic_proxy.rb', line 5 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 |