Sha256: 92b2df53a738581fc5b713b9bbea8af75c91833f4e4cf55180e1725a80c1e6a2

Contents?: true

Size: 881 Bytes

Versions: 56

Compression:

Stored size: 881 Bytes

Contents

# encoding: UTF-8
module MongoMapper
  module Plugins
    module Associations
      class OneEmbeddedProxy < Proxy
        def build(attributes={})
          @target = klass.new(attributes)
          assign_references(@target)
          loaded
          @target
        end

        def replace(doc)
          if doc.respond_to?(:attributes)
            @target = klass.load(doc.attributes)
          else
            @target = klass.load(doc)
          end
          assign_references(@target)
          loaded
          @target
        end

        protected

          def find_target
            if @value
              klass.load(@value).tap do |child|
                assign_references(child)
              end
            end
          end

          def assign_references(doc)
            doc._parent_document = proxy_owner if doc
          end
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 6 rubygems

Version Path
jonbell-mongo_mapper-0.8.6 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
ssherman-mongo_mapper-0.8.6 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-0.8.6 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-0.8.5 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
honkster-mongo_mapper-0.8.4 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-0.8.4 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.19 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.18 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.17 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.16 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.15 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.14 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.13 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.12 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.11 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.10 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.09 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-0.8.3 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.08 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb
mongo_mapper-unstable-2010.08.06 lib/mongo_mapper/plugins/associations/one_embedded_proxy.rb