binding_of_caller REPL不触发更好的错误



我有一个使用Better Errors的Rails应用程序,但是错误页面不会加载binding_of_caller交互shell (REPL)。相反,它仍然只显示:

Tip: add gem "binding_of_caller" to your Gemfile to enable the REPL and local/instance variable inspection.

我的Gemfile有:

group :development, :test do
    gem 'debugger'
    gem 'better_errors'
    gem 'binding_of_caller' #, :platforms=>[:mri_19, :mri_20, :rbx]

最后一部分我尝试了注释或不注释。当在Rails控制台中尝试"require 'binding_of_caller'"时,它返回false而不是错误,这意味着它已正确加载。Gemfile。Lock显示以下版本:

rails (4.1.0.rc2)
better_errors (1.1.0)
  coderay (>= 1.0.0)
  erubis (>= 2.6.6)
binding_of_caller (0.7.2)
  debug_inspector (>= 0.0.1)

怎么了?我应该提供哪些其他代码来查找出错的线索?

检查是否:

config.consider_all_requests_local = true

设置在config/environments/development.rb

同样,如果你使用的是sublime编辑器,你可以添加:

BetterErrors.editor = :sublime if defined? BetterErrors

在你的config/initializers文件夹中命名一个文件"better_errors.rb"

让我知道这是否有帮助?

相关内容

  • 没有找到相关文章

最新更新