Shoes has some built in dump commands (Shoes.debug), but are there other tools that can debug the code without injecting debug messages throughout? Something like gdb would be great.
|
|
Have you looked at the ruby-debug gem?
The rdebug executable gives you a similar interface to gdb (breakpoint setting, etc). You just simply execute your script with rdebug instead of ruby. You can also do something like this to avoid manually setting breakpoints:
Here's a tutorial on ruby-debug: http://www.datanoise.com/articles/2006/7/12/tutorial-on-ruby-debug |
||
|
|
The shoes console. Press Alt+/ (or apple+/ on a mac) to see the stack trace of your application. |
||
|
|
|
|
You can also use Shoes.show_log to automatically open a debug console. |
|||
|
|
|
|
Note that if you use Alt + / you'll have to run that "before" starting the app |
|||
|
|
|
|
I was a bit confused about the Apple-/ (or Alt-/) bit mentioned here. What I ended up doing was running ./shoes with no arguments, which popped up the console, then started my app with *./shoes my_app.rb*. |
|||
|
|
