Rails サーバーを実行するためにガードレールを使用しています。問題は、binding.pry を追加したときに REPL にアクセスできないことです。
From: /home/martinr/code/app/controllers/tools_controller.rb @ line 2 ToolsController#index:
2: def index
=> 3: binding.pry
4: @end_date = Date.today.to_s
5: @start_date = Date.today.months_ago(3).to_s
7: end
[1] pry(#<ToolsController>)>
REPL がありません。ガードレールでこじ開けるにはどうすればよいですか?
私のGemfileファイルは次のようになります
group :development, :test do
gem 'pry-rails' # for better console debugging
gem 'pry-debugger'
gem 'rb-inotify'
gem 'sqlite3'
end
私のガードファイル:
guard 'rails', :debugger => true do
watch('Gemfile.lock')
watch(%r{^(config|lib)/.*})
end