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 to show a full stack trace on a warning, or apply some kind of monkey patch that i can override the default warning functionality. How would i do this?

link|improve this question
Shouldn't the file and line number be displayed in your warning by default? – Andrew Grimm Sep 26 '11 at 23:05
feedback

1 Answer

Try $DEBUG = true. That will cause at least some warnings to turn into errors.

link|improve this answer
In ruby? Can you elaborate? I'm curious how I'd do that. – Thilo Sep 26 '11 at 23:39
@Thilo How you’d set it? Either ruby --debug or just $DEBUG = true. – Daniel Brockman Sep 26 '11 at 23:43
Unfortunately that won't work. I'm already in debugging mode. I'd like to do something like a begin/rescue/end for warnings where i can grab a 'warning' object and get a backtrace from it – Sean McCullough Oct 13 '11 at 18:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.