我从http://guides.rubyonrails.org/getting_started.html
型号/post.rb
class Post < ActiveRecord::Base
validates :name, :presence => true
validates :title, :presence => true,
:length => { :minimum => 5 }
end
但不起作用
NoMethodError in PostsController#index
undefined method `validates' for #<Class:0x7f1fd7b6d750>
这是一个版本问题。安装Rails3解决了这个问题。