Yesterday i tried to switch from MRI to JRuby and I believe that i got all the gems right. I am using Mongoid and not ActiveRecord so no switching of gem necessary there i think.

The error i get is:

incompatible character encodings: UTF-8 and ASCII-8BIT

The Full trace can be shown here: https://gist.github.com/1305847

And my Gemfile can be shown here: https://gist.github.com/1305882

Does anyone have a clue to what the solution might be? Thanks in advance!

link|improve this question

Please post the output of both ruby -v and jruby -v – Rob Oct 24 '11 at 1:13
feedback

2 Answers

up vote 1 down vote accepted

It turns out there was a problem with jruby 1.6.4. After upgrading to 1.6.5 it works fine.

link|improve this answer
feedback

Try with running JRuby in 1.9 mode:

$ jruby --1.9 rails s

You can also $ export JRUBY_OPTS=--1.9

link|improve this answer
Yeah, I'm using the export – Lisinge Oct 22 '11 at 13:07
What is in here? app/views/layouts/application.html.haml:12 – Nerian Oct 22 '11 at 14:09
1  
There is an render partial there. Which renders some UTF-8 characters including åäö This is not an error with MRI but just JRuby. Ive read some bug tickets and it seems to be just an JRuby bound error – Lisinge Oct 22 '11 at 14:30
feedback

Your Answer

 
or
required, but never shown

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