Sha256: 0f1ccb99895e07000ea5f089aff13848f2418734fc6bc7c16081860b90334da5
Contents?: true
Size: 913 Bytes
Versions: 169
Compression:
Stored size: 913 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) if _loading? Factory.from_db(klass, object) else Factory.build(klass, object) end end end end end end end
Version data entries
169 entries across 77 versions & 4 rubygems