Hi there, I''m trying out Ruby on Rails for the first time. I want to know if there is a good debugger for it. Does anybody know of one? Thanks -- Posted via http://www.ruby-forum.com/.
David Furgeson wrote:> Hi there, > > I''m trying out Ruby on Rails for the first time. I want to know if > there is a good debugger for it. Does anybody know of one? > > ThanksHi, at least you can start by using script/breakpointer and put "breakpoint" statement on your code. Then, when the breakpointer reacts to the breakpoint your can examine all the environment (local instances, class instances, and so on) Honestly, I didn''t needed anything else until now -- Posted via http://www.ruby-forum.com/.
On Jul 21, 2006, at 11:15 AM, David Furgeson wrote:> Hi there, > > I''m trying out Ruby on Rails for the first time. I want to know if > there is a good debugger for it. Does anybody know of one? > > Thanks > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/railsDavid- Kent Sibilev has recently made a quite nice debugger that you can use on rails apps. Here''s his blog: http://www.datanoise.com/articles/category/ruby-debug -Ezra