使用の概念は理解していますが、mongoid.orgの1-N埋め込みドキュメントの例に示されているように、埋め込みドキュメントにフィールドが1つしかない場合、特にembeds_many
どのような目的がありますか?embeds_one
親ドキュメントにフィールドを作成する方が良いのではないでしょうか。
mongoid.orgの例:
class Band
include Mongoid::Document
embeds_one :label
end
class Label
include Mongoid::Document
field :name, type: String
embedded_in :band
end