Class: MongoMapper::Associations::PolymorphicHasManyEmbeddedProxy
- Defined in:
- lib/mongomapper/associations/polymorphic_has_many_embedded_proxy.rb
Instance Attribute Summary
Attributes inherited from Proxy
Instance Method Summary collapse
Methods inherited from Proxy
#initialize, #reload_target, #reset, #respond_to?, #send
Constructor Details
This class inherits a constructor from MongoMapper::Associations::Proxy
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class MongoMapper::Associations::Proxy
Instance Method Details
#replace(v) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/mongomapper/associations/polymorphic_has_many_embedded_proxy.rb', line 4 def replace(v) @_values = v.map do |e| ref_type = "#{@association.name}_type" if e.kind_of?(EmbeddedDocument) e.class.send(:key, ref_type, String) {ref_type => e.class.name}.merge(e.attributes) else e end end @target = nil reload_target end |