Pry like debugger for Sidekiq?
Workers are designed to be trivial to run. Put pry in your worker code and run it in the rails console.
> MyWorker.new.perform(some_args)
The best thing I've come up with is this gem gem 'pry-remote'
it works great and stops all processes from running. And it works like pry
just put in binding.remote_pry
and you've got a stopping point.