module Mongoid::Association::Builders

This module is responsible for defining the build and create methods used in one to one associations.

@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