Search code examples
ruby-on-railsresqueruby-debug

How can I use ruby-debugger inside of a resque job?


I'm looking for a command to start a worker process so that inside of the job's perform method I can call debugger and have control thrown to the command prompt.


Solution

  • I ended up using pry instead of ruby-debugger. Works like a charm. Practically an Irish charm!