Sha256: 0c5cc4e8972cff1937f87ceb12042587d1aa741c2fa2bac46cbb5ff93aea6518
Contents?: true
Size: 801 Bytes
Versions: 30
Compression:
Stored size: 801 Bytes
Contents
module MongoMapper module Plugins module Associations class ManyEmbeddedPolymorphicProxy < EmbeddedCollection 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 protected def find_target (@_values || []).map do |hash| child = polymorphic_class(hash).load(hash) assign_references(child) child end end def polymorphic_class(doc) if class_name = doc[association.type_key_name] class_name.constantize else klass end end end end end end
Version data entries
30 entries across 30 versions & 6 rubygems