Rails 3.1 Authlogic 名称错误
我目前正在尝试让 authlogic 与我的 Rails 3.1 安装一起使用。在我的 Gemfile 中,我有: gem 'authlogic'
运行捆绑安装工作完美,但在我的 app/models/user_session.rb 文件(如下所示)中,我收到此错误:
未初始化常量 AuthLogic (NameError)
user_session.rb:
class UserSession < Authlogic::Session::Base
end
我只是忘记需要一些东西吗?我到处寻找,却一无所获。如果需要,我很乐意提供更多信息。
非常感谢任何帮助,谢谢!
I'm currently trying to get authlogic working with my Rails 3.1 installation. In my Gemfile I have: gem 'authlogic'
running bundle install works perfectly, but in my app/models/user_session.rb file (shown below), I get this error:
uninitialized constant AuthLogic (NameError)
user_session.rb:
class UserSession < Authlogic::Session::Base
end
Am I simply forgetting to require something? I've searched all over and haven't been be able to come up with anything. I'd be happy to provide more information if needed.
Any help is greatly appreciated, thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在应该引用
Authlogic
的地方却引用了常量AuthLogic
。小写 L。Somewhere you've referenced the constant
AuthLogic
, when you should have referencedAuthlogic
. Lower-case L.