Best way to debug third-party gems in ruby Best way to debug third-party gems in ruby ruby ruby

Best way to debug third-party gems in ruby


I would love to know if there's a better way to do this, but how I usually do it is:

  1. Add the ruby-debug gem to your Gemfile (or ruby-debug19 if you're on Ruby 1.9.2)
  2. Find the Gem by doing bundle show gemname. I'm on a Mac so I usually pipe this to pbcopy so it gets copied to my clipboard. bundle show rails | pbcopy
  3. Open the gem directory in your favorite editor. mvim /path/to/gem/directory
  4. Navigate to the file and line where you want to put the breakpoint* and insert debugger above the line in question.
  5. Reload page, run test, or do whatever you would to get the Gem file to execute
  6. When execution stops at debugger, you can inspect variables (p variable_name), and move line by line with the ruby debugger commands.

*Knowing where to put the breakpoint can take some understanding of the code, but you should start in lib/gemname.rb


I would avoid editing the Gem files as suggested in the currently accepted answer. Instead, put the debugger command in one of your app files and use the break command to set a breakpoint in the gem. I'm using rvm with a gemset so here is how I do it:

break /Users/chris/.rvm/gems/ruby-1.9.3-p125@<gemset>/gems/<gem_name>-<gem-version>/<path_to_file>:<line_number>


Both commands output a path to the gem source in your computer.

# if it is present in your gemfilebundle show gemname# if not in your gemfilegem which gemname

Then just open the folder in your text editor of choice, and good debugging!