我有一个应用程序是使用rails 3.2.3和spork 1.0.0rc2.
当我运行我的黄瓜测试我得到:
@H_
403_3@ActionView::Template::Error: undefined local variable or method `page_title'
其中page_title在我的应用程序助手中定义.我不知道是什么破坏了它,因为它正在工作,直到最后一个捆绑更新.
任何人有同样的问题?
要
解决此问题,请在Spork.prefork块中
添加以下这些行
@H_
403_3@full_names = Dir["#{Rails.root}/app/helpers/*.rb"]
full_names.collect do |full_name|
include Object.const_get(File.basename(full_name,'.rb').camelize)
end
原文链接:https://www.f2er.com/ruby/267131.html