Is there a ruby visual debugger that i can run from the linux terminal? And if so, how do i run it?
-
visual? command line? I don't think those two keywords go well together. Are you looking for a command line debugger or some kind of integrated environment with a graphical interface (IDE)? Maybe you just need IRB, you need to be a bit more specific.Niklas B.– Niklas B.2011-09-06 15:42:12 +00:00Commented Sep 6, 2011 at 15:42
-
i can run applications from the command line, like with perl i can run "perl -dptkdb somescript.pl", from the terminal and then i get ptkdb.sourceforge.net/images/ptkdb-win-example1.pngjohn-jones– john-jones2011-09-06 15:56:13 +00:00Commented Sep 6, 2011 at 15:56
Add a comment
|
1 Answer
There are several graphical debuggers available for Ruby, e.g Mr. Guid, rudebug or the RubyMine IDE, the latter of which does not seem to quite fit your use case. ruby -r debug [script] runs on the command line but is also quite usable.
2 Comments
john-jones
mr guid it is, its not the best but it works. rudebug i had trouble installing.
john-jones
had to run 'sudo apt-get install fantasdic' for mr guid though.