Recently saw this stack trace on our Heroku app on cedar
/usr/local/lib/ruby/1.9.1/uri/common.rb:156:in `split'
/usr/local/lib/ruby/1.9.1/uri/common.rb:174:in `parse'
/usr/local/lib/ruby/1.9.1/uri/common.rb:628:in `parse'
Why is it using Ruby 1.9.1?
My Gemfile is not specifying a Ruby version. Heroku's docs suggest that we should be getting the Cedar default of 1.9.2
https://devcenter.heroku.com/articles/ruby-versions
EDIT:
ruby -v appears to report the correct version
$ heroku run "ruby -v"
Running `ruby -v` attached to terminal... up, run.2594
ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux]