モジュール: Mongoid::関連付け::Builders

次による拡張機能。
ActiveSupport::Concern
次のドキュメントに含まれます。
Mongoid::関連付け
定義:
lib/mongoid/関連付け/Builders.rb

Overview

このモジュールは、1 対 1 の関連付けで使用されるビルドと作成メソッドを定義します。

例:

作成されるメソッド。


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" })