刚刚从
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中的一个模块,所以为什么不包括工作?