- Active Record なしで生成された Rails アプリ
- Mongoid (Mongodb & Mongoid) に適切な gem を追加
- Rails をサポートする config/ に mongoid.yml ファイルを生成
- 典型的な CRUD ルートでフレンド モデルとユーザー コントローラーを作成
私が得た一括割り当てを実行しようとする場合を除いて、すべてが機能します。
"undefined method `attr_accesible' for Friend:Class"
モデル、friend.rb:
class Friend
include Mongoid::Document
field :first_name, :type => String
field :last_name, :type => String
field :adjective, :type => String
attr_accessible :first_name, :last_name, :adjective
end
development:
sessions:
default:
database: first_development
hosts:
- localhost:27017
options:
options:
test:
sessions:
default:
database: first_test
hosts:
- localhost:27017
options:
consistency: :strong
max_retries: 1
retry_interval: 0
考え?