undefined method `selector' for #<ActiveRecord::Relation:0xbb8710c>
次のコードを実行しようとすると、このエラーが発生します。
c = Content.first
c.is_processed = true
c.save # or c.update_attributes(:is_processed => true)
私のコンテンツモデルは次のようになります:
class Content
include Mongoid::Document
field :username
field :name
filed :is_processed, :type => Boolean
belongs_to :language
has_many :translations
end
Mongoid 2.4、bson_ext 1.5、Ruby 1.9.2、Rails 3.2.5 を使用しています。