Rails 3.1 Authlogic 名称错误

发布于 2024-12-01 10:00:12 字数 403 浏览 1 评论 0原文

我目前正在尝试让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〆凄凉。 2024-12-08 10:00:12

您在应该引用 Authlogic 的地方却引用了常量 AuthLogic。小写 L。

Somewhere you've referenced the constant AuthLogic, when you should have referenced Authlogic. Lower-case L.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文