How to debug Ruby base methods in Netbeans ?
- by Bragaadeesh
Hi,
I am able to debug my ruby program. At times, I would want to go inside the library methods and see what is happening. How to achieve it in Ruby.
For example,
[ 3, 1, 7, 0 ].sort
i would want to go inside the sort method and see how that works lively. In Java+Eclipse this is possible, all I have to do is to attach the source of Foundation classes in Eclipse. Is it possible in Ruby with Netbeans as IDE?
Thanks