How to ask ruby pry to stop all other threads

Viewed 1463

I'm trying to debug a multithreaded ruby script, the problem is when I do

binding.pry

The other threads continue sending output to the console. How do I make them stop at binding.pry and then start up again when I exit? I'm thinking there's a way to do this in .pryrc

3 Answers
Related