This module is responsible for defining the build and create methods used in one to one relations.
@example Methods that get created.
class Person
include Mongoid::Document
embeds_one :name
end
# The following methods get created:
person.build_name({ :first_name => "Durran" })
person.create_name({ :first_name => "Durran" })
@since 2.0.0.rc.1
Generated with the Darkfish Rdoc Generator 2.