Sha256: c62f5e2b832e2de9e3943e8496e26f960a378e3a3b3c644f57f130370807fc6f
Contents?: true
Size: 822 Bytes
Versions: 169
Compression:
Stored size: 822 Bytes
Contents
# encoding: utf-8 module Mongoid # :nodoc: module Relations #:nodoc: module Builders #:nodoc: module Embedded #:nodoc: class In < Builder #:nodoc: # This builder doesn't actually build anything, just returns the # parent since it should already be instantiated. # # @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