Module: Mongoid::Relations::Builders::ClassMethods

Defined in:
lib/mongoid/relations/builders.rb

Overview

:nodoc:

Since:

  • 2.0.0.rc.1

Instance Method Summary collapse

Instance Method Details

#builder(name, metadata) ⇒ Class

Defines a builder method for an embeds_one relation. This is defined as #build_name.

Examples:

Person.builder("name")

Parameters:

Returns:

  • (Class)

    The class being set up.

Since:

  • 2.0.0.rc.1



65
66
67
68
69
70
71
72
73
74
# File 'lib/mongoid/relations/builders.rb', line 65

def builder(name, )
  tap do
    define_method("build_#{name}") do |*args|
      document = Factory.build(.klass, args.first || {})
      building do
        send("#{name}=", document)
      end
    end
  end
end

#creator(name) ⇒ Class

Defines a creator method for an embeds_one relation. This is defined as #create_name. After the object is built it will immediately save.

Examples:

Person.creator("name")

Parameters:

Returns:

  • (Class)

    The class being set up.

Since:

  • 2.0.0.rc.1



88
89
90
91
92
93
94
# File 'lib/mongoid/relations/builders.rb', line 88

def creator(name)
  tap do
    define_method("create_#{name}") do |*args|
      send("build_#{name}", *args).tap { |doc| doc.save }
    end
  end
end