我使用rvm使用1.9.2然后当尝试运行rails时我收到以下
错误.
/Users/pel/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.0.rc5/lib/action_view/railtie.rb:34:in `block (3 levels) in <class:Railtie>': undefined method `debug_rjs=' for ActionView::Base:Class (NoMethodError)
检查你的config / environments / development.rb
文件,你可能有这一行:
config.action_view.debug_rjs = true
去掉它.可能最好在整个项目中搜索任何debug_rjs引用并将其全部删除.
原文链接:https://www.f2er.com/ruby/269578.html