Sha256: 7a53d6db221b12f859141e78bd015a11958429bbabb631f8bc96a67689e61c23

Contents?: true

Size: 862 Bytes

Versions: 3

Compression:

Stored size: 862 Bytes

Contents

# encoding: utf-8
module Mongoid # :nodoc:
  module Relations #:nodoc:
    module Builders #:nodoc:
      module Embedded #:nodoc:
        class One < Builder #:nodoc:

          # Builds the document out of the attributes using the provided
          # metadata on the relation. Instantiates through the factory in order
          # to make sure subclasses and allocation are used if fitting.
          #
          # @example Build the document.
          #   Builder.new(meta, attrs).build
          #
          # @param [ String ] type Not used in this context.
          #
          # @return [ Document ] A single document.
          def build(type = nil)
            return object unless object.is_a?(Hash)
            object.delete(:binding)
            Mongoid::Factory.build(metadata.klass, object)
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mongoid-2.0.1 lib/mongoid/relations/builders/embedded/one.rb
mongoid-2.0.0 lib/mongoid/relations/builders/embedded/one.rb
mongoid-2.0.0.rc.8 lib/mongoid/relations/builders/embedded/one.rb