我刚用mongoid设置了我的第一个Rails 3.1应用程序:
$ bundle install
[...]
Using bson_ext (1.5.1)
Using mongoid (2.2.4)
我创建了我的第一个模型:
class Chapter
include Mongoid::Document
field :name
end
当我运行irb时,我明白了:
$ irb
1.8.7 :001 > Chapter.new
NameError: uninitialized constant Chapter
from (irb):1
我错过了什么?
答案 0 :(得分:1)
您必须使用rails c
代替irb
来加载环境,然后您才能使用模型方法。