Tagged Questions
18
votes
5answers
6k views
How do I get ruby to print a full backtrace instead of a truncated one?
When I get exceptions, it is often from deep within the call stack. When this happens, more often than not, the actual offending line of code is hidden from me:
tmp.rb:7:in `t': undefined method ...
7
votes
1answer
10k views
How to force ruby to show full stack trace? [closed]
I just got this error message:
...
from c:/ruby/lib/ruby/gems/1.8/gems/...
... 10 levels...
from c:/ruby/lib/ruby/gems/1.8/gems/...
...
and the bug (of course) is hidden somewhere in ... 10 ...
5
votes
4answers
2k views
How to get a stack trace object in Ruby?
I need to get a stack trace object in Ruby; not to print it, just to get it to do some recording and dumping for later analysis. Is that possible? How?
1
vote
1answer
40 views
Getting stack trace info for a ruby warning
I've been running into some strange errors with UTF strings in ruby 1.9. Often ruby will complain on something like this:
warning: regexp match /.../n against to UTF-8 string
I'd like to be able ...
0
votes
0answers
23 views
Clickable Ruby stack trace links in Aptana 3.0.x
In Aptana 2.x, whenever a stack trace appeared in the console, you could click on the filename to get to that file (unfortunately, it seldom took you to the right line, but at least the file was ...
0
votes
1answer
36 views
name of file that called a method
Is there a nice, recommended way to get the name of the file that called a method? I don't want to pass __FILE__ every time. The closest thing I've found is taking the first element of ...
0
votes
1answer
210 views
JRuby mysterious stack trace
I'm using JRuby 1.4.0 complete jar in one of my projects. I'm executing it from ant via the exec task:
java -jar jruby1.4.0.jar script.rb script_params
The thing is, on some computers I receive ...
0
votes
1answer
104 views
Find the source of (eval:…) code
I've got code which produces a stack trace at some point:
fileA.rb:1670:in `flow_completed_for'
(eval):58:in `on_success_res_for_register'
fileB:312:in `send'
fileC:312:in ...