TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How do you debug your rails applications?

5 pointsby mattewabout 15 years ago
Just wondering what the consensus is on the best tools for debugging rails apps.

4 comments

sevenabout 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. :)"
jeffyabout 15 years ago
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_mangesabout 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.
jrallisonabout 15 years ago
the ruby-debug gem has always worked for me.