I'm getting two errors, both revolving around encoding and both related.
The first error (technically, a warning) I get when starting up WEBrick:
/Users/USERNAME/example/config/initializers/bb-ruby.rb:54: warning: invalid Unicode Property \P: /\:\-?\P/
The line it's referring to is: /\:\-?\P/,
It's just a bit of regex, ultimately part of this block:
@@tags['Razzing'] = [
/\:\-?\P/,
'<img src="/assets/emoticons/razzing.png">',
'Razzing',
':P',
:razzing]
Then, I also get the following error when parsing some strings (presumably due to this same line)...
Encoding::CompatibilityError
incompatible encoding regexp match (ASCII-8BIT regexp with UTF-8 string)
I'm running Ruby 1.9.2 and Rails 3.2.1.