1

I'm diving into how to use the Ruby Debugger (ruby-debug), specifically in a Rails app. It seems that the ps command within rdb should evaluate an expression, sort it, and columnize the value. All of that is working except columnizing, it just lists them from the top down.

Am I missing something obvious here? The exact command I'm running within rdb is ps private_methods.

The version of rdb I'm using is ruby-debug 0.10.4

Andrew Marshall
  • 95,083
  • 20
  • 220
  • 214
Brian
  • 7,204
  • 12
  • 51
  • 84

1 Answers1

2

If you are serious about debugging, try pry

fuzzyalej
  • 5,903
  • 2
  • 31
  • 49