ruby-on-rails-3 – Rails 3 RESTful身份验证 – 未初始化的常量ApplicationController :: AuthenticatedSystem

前端之家收集整理的这篇文章主要介绍了ruby-on-rails-3 – Rails 3 RESTful身份验证 – 未初始化的常量ApplicationController :: AuthenticatedSystem前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
刚刚从 https://github.com/Satish/restful-authentication安装了升级的Rails 3的restful_authentication插件.我正在尝试从我的应用程序助手中插入代码,如下所示:
class ApplicationController < ActionController::Base
    protect_from_forgery

    include AuthenticatedSystem
end

但是,当我运行服务器并导航到本地主机上的应用程序时,我会收到如下错误

uninitialized constant ApplicationHelper::AuthenticatedSystem

AuthenticatedSystem是lib / authenticated_system.rb中的一个模块,所以为什么不包括工作?

解决方法

默认情况下,Rails 3不会在/ lib目录中加载文件:(

将其添加到您的config / application.rb中:

config.autoload_paths << "#{Rails.root}/lib"

你应该没事不要忘记重新启动服务器.

原文链接:https://www.f2er.com/ruby/266017.html

猜你在找的Ruby相关文章