The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
81 views

Debugging Rails and Trinidad

I'm working on a rails 3 app that uses trinidad. I've been using RubyMine(4.5), but can't for the life of me figure out how to debug the app. It runs fine from the IDE in non-debug mode, but when you ...
1
vote
1answer
30 views

rdebug continue past breakpoints

I have put some debugger breakpoints in my rails app within some long loops. After hitting the breakpoint and evaluating what I need, is there a way to continue ignoring the rest of my break points?
0
votes
1answer
51 views

Starting up rdebug connects, but then what am I to do?

I'm using POW and Rdebug, and I have it all seemingly working because when I type : rdebug -c It returns : Connected. But now what? I have debugger placed in a partial call. I can tell the ...
0
votes
1answer
115 views

How can I use rdebug with pow rack server

I'm developing Rails apps using pow as the local server. I want to be able to connect to the debugger when dropping a debugger line in my ruby code, just as you would to webrick server.
1
vote
2answers
129 views

Why do I get a segmentation fault with -rdebug option?

My code gives me a segmentation fault when I run it with the rdebug option on command line: font_size = {"ft0"=>26, "ft1"=>10, "ft2"=>8, "ft3"=>9, "ft4"=>9, "ft5"=>7, "ft6"=>8, ...
0
votes
2answers
339 views

Drop into irb when debugging in Aptana 3

I am new to ruby and Aptana (I have used eclipse before) I was wondering if when debugging in Aptana we can drop into irb to play around with things with current values set. For example doing Java dev ...
0
votes
1answer
391 views

Unable to start rdebug

I cannot seem to start rdebug on my machine. Everything else seems to be working okay. I've tried updating my gems without much luck. I've tried some suggestion of setting the arch flag to x86_64 and ...
1
vote
1answer
814 views

Ideas for troubleshooting emacs error: “apply: Spawning child process: exec format error”

I'm trying to use rdebug with emacs and cygwin and I'm running into trouble. Whenever I do a M-x rdebug and give it the appropriate script to run, it stops with the error "apply: Spawning child ...
2
votes
1answer
228 views

Why does my rdebug session say “*** No sourcefile available”

I'm not sure what the pattern of behaviour is but some programs - notably simple rack.ru based ones running in thin - can't easily be debugged. When a breakpoint is tripped, no source is available ...
76
votes
10answers
22k views

Debugging in ruby 1.9

What do you guys use for debugging in ruby 1.9? rdebug doesn't seem to be compatible.. is there anything out there?