Sha256: 5931d4b150b210de792fe8c5ab0b07a2c1f7a5829245f86a2ee49c2b7daa79fc
Contents?: true
Size: 819 Bytes
Versions: 75
Compression:
Stored size: 819 Bytes
Contents
# encoding: UTF-8 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
75 entries across 75 versions & 11 rubygems