我收到一个错误,其中为rails 3定义了acts_as_authentic,ruby 1.9.2
我的Gemfile有:gem'authlogic'
命令“bundle show authlogic”显示安装authlogic的正确路径
我的acts_as_authentic出现在控制器中:
class User < ActiveRecord::Base
acts_as_authentic do |c|
c.login_field = :phone
end
end
让我知道是否有其他任何有用的东西,我是铁杆新手,所以我不完全确定要发布什么。
由于
答案 0 :(得分:2)
出于某种原因,我总是在弄清楚问题之前就在StackOverflow上提问。我需要重新启动rails服务器才能使它工作。