I've just created a Rails project using Rails '~> 5.0.0', '>= 5.0.0.1' and whenever I try to debug it with binding.pry it freezes the whole application and also the terminal where I started the rails s command.
the gems I'm using are gem 'pry' gem 'pry-rails'
and also configure my applicaiton.rb with
console do
require 'pry'
config.console = Pry
end
The weirdest thing is that the terminal freezes as well... but no further log is printed on screen.
I do have my applicaiton wrapped in Docker but even if i'm running on docker or directly with rails s the behaviour is the same... it does look it stopped at the binding.pry on the code... but it doesn't show anywhere.
Do I have to do extra setup?