私は、以下のようなクラスを持っていますが、各インスタンスの最後の名前を配列に取り出す方法は?コレクションから配列を返すコレクションの属性を配列に引き出す方法
class Person
include :Mongoid::Document
field :first_name
field :middle_name
field :last_name
field :email_address
end
Person.all # What do I do after I have the collection?
.map(&:last_name) –