关于lib目录中定义的模块,我有一个令人费解的问题
我有两个文件
#lib/authentication.rb module Authentication end #lib/test_module.rb module TestModule end
在我的应用程序控制器中我有
class ApplicationController < ActionController::Base include Authentication include TestModule end
身份验证模块正确加载但TestModule没有
我得到“未初始化的常量ApplicationController :: TestModule”
我很难过……有人吗?
编辑:有谁知道我可以在哪里调试这个?