Sha256: 5398604bda52f21cf13ffbcc1c161d312319fee354495d11ba51e0333a8d8ad6
Contents?: true
Size: 1.26 KB
Versions: 15
Compression:
Stored size: 1.26 KB
Contents
# encoding: utf-8 module Mongoid module Relations module Bindings module Embedded # Binding class for embeds_one relations. class One < Binding # Binds the base object to the inverse of the relation. This is so we # are referenced to the actual objects themselves on both sides. # # This case sets the metadata on the inverse object as well as the # document itself. # # @example Bind the document. # person.name.bind(:continue => true) # person.name = Name.new # # @since 2.0.0.rc.1 def bind_one target.parentize(base) binding do target.do_or_do_not(metadata.inverse_setter(target), base) end end # Unbinds the base object and the inverse, caused by setting the # reference to nil. # # @example Unbind the document. # person.name.unbind(:continue => true) # person.name = nil # # @since 2.0.0.rc.1 def unbind_one binding do target.do_or_do_not(metadata.inverse_setter(target), nil) end end end end end end end
Version data entries
15 entries across 15 versions & 2 rubygems