TE
TechEcho
Home
24h Top
Newest
Best
Ask
Show
Jobs
English
GitHub
Twitter
Home
Ask HN: How do you debug your rails applications?
5 points
by
mattew
about 15 years ago
Just wondering what the consensus is on the best tools for debugging rails apps.
4 comments
seven
about 15 years ago
I use the ruby-debug gem.<p>Quote from a co-worker: "If you need to use a debugger, your code is too complicated. :)"
jeffy
about 15 years ago
Collapse
I use the Netbeans IDE debugger. It can get hung and crash your rails app if you put breakpoints in certain places, but it's pretty good for simple debugging.
评论 #1205944 未加载
评论 #1205946 未加载
dan_manges
about 15 years ago
I use unit tests and puts statements to debug most of the time. It can be faster than stepping through an actual debugger.
jrallison
about 15 years ago
the ruby-debug gem has always worked for me.