我想知道在使用pry时是否可以访问变量app
?
例如,当我尝试访问时,root_path
我收到以下错误:
[14] pry(main)> app.root_path
NameError: undefined local variable or method `app' for main:Object
有人说“它现在可以与 pry 和 3.2.9 一起使用”。我正在使用 rails 3.2.12,但它似乎不起作用。
我gem 'pry'
在我的 GemFile 组开发中和config/environments/development.rb
以下
# Use Pry instead of IRB
silence_warnings do
begin
require 'pry'
IRB = Pry
rescue LoadError
end
end