I found a similar post here but I can't solve the problem anyway.

I got this

/home/fra/siti/Pensiero/db/seeds.rb:32: invalid multibyte char (US-ASCII)
/home/fra/siti/Pensiero/db/seeds.rb:32: invalid multibyte char (US-ASCII)
/home/fra/siti/Pensiero/db/seeds.rb:32: syntax error, unexpected $end, expecting ')'
... ed il valore della vita, si è malati", :user_id => 1, :cat...

The problem is into this string

:body => "Nel momento in cui ci si chiede il significato ed il valore della vita, si è malati"

I got the problme with every "e" charachter with the accent like "è é "

I tried to put magic comment # coding: utf-8 but it doesnt work

Any idea?

link|improve this question

What version of Ruby? – the Tin Man Oct 13 '10 at 4:25
ruby 1.9.2p0, rails 3.0.0, i'm using rvm – framomo86 Oct 13 '10 at 19:17
Rails should do that, but could you please check if $KCODE == 'utf-8'? – balu Nov 3 '10 at 21:00
possible duplicate stackoverflow.com/questions/3678172/… – gorn May 4 at 12:59
feedback

3 Answers

up vote 21 down vote accepted

Instead of adding # coding: UTF-8 try to add # encoding: UTF-8

It worked for me. I found the information here : http://groups.google.com/group/sinatrarb/browse_thread/thread/f92529bf0cf62015

link|improve this answer
Yes. It made the trick – framomo86 Jan 30 '11 at 14:25
feedback

Just add the following line as the first line in the file:

# -*- coding: utf-8 -*-

and it will work.

link|improve this answer
feedback

Add a magic comment in the script where you use non-ascii chars? It should go on top of the script.

# encoding: utf-8

It worked for me like charm.

Or if you want to make the project wide, you have an option of magic-encoding gem

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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