Sha256: bfebbb807de90f66cfc2d4173973adcdf24bbf8399c451e3fa838ce90b0fee1e
Contents?: true
Size: 886 Bytes
Versions: 43
Compression:
Stored size: 886 Bytes
Contents
# encoding: utf-8 module Mongoid module Relations module Builders module Embedded class One < Builder # 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? && base.persisted? Factory.from_db(klass, object) else Factory.build(klass, object) end end end end end end end
Version data entries
43 entries across 43 versions & 5 rubygems
Version | Path |
---|---|
mongoid-3.0.1 | lib/mongoid/relations/builders/embedded/one.rb |
mongoid-3.0.0 | lib/mongoid/relations/builders/embedded/one.rb |
mongoid-3.0.0.rc | lib/mongoid/relations/builders/embedded/one.rb |