When accessing my Rails app locally, I get the following error when loading any page:
/!\ FAILSAFE /!\ Tue Jul 06 15:08:17 -0500 2010
Status: 500 Internal Server Error
Expected /my_rails_app/app/helpers/admin/article_categories_helper.rb to define Admin::ArticleCategoriesHelper
If I follow the full trace, I'm brought to this line in my application controller:
helper :all
If I comment out that line, everything appears to load fine.
Also, here's the contents of my /admin/article_categories_helper.rb
file:
module Admin::ArticleCategoriesHelper
end
So, any ideas what could be causing this and how to fix it?