I'm using Ruby 1.9.1 with Rails 2.3.4 My application is to handle text input

If I try something like (the inside quotation marks look different)

text = "”“"

I get the following error:

#<SyntaxError: /Users/tammam56/rubydev/favquote/lib/daemons/twitter_quotes_fetch.rb:54: invalid multibyte char (US-ASCII)
/Users/tammam56/rubydev/favquote/lib/daemons/twitter_quotes_fetch.rb:54: invalid multibyte char (US-ASCII)
/Users/tammam56/rubydev/favquote/lib/daemons/twitter_quotes_fetch.rb:54: syntax error, unexpected $end, expecting keyword_end

I need to user those quotation marks as users might input them and I have to account for that?

Any ideas?

link|improve this question

feedback

4 Answers

up vote -13 down vote accepted

Those particular quotation marks are not valid ASCII characters. Here is a reference for the different types of UTF quotation marks and their relationship to ASCII characters. If you need to accept those quotation marks you will need to accept UTF strings, which should be the default in Rails 2.3.x (IIRC). If you need to deal with handling UTF input in Rails I would refer to this article.

link|improve this answer
25  
This does not sound like it is the correct answer to the original question, whereas the answer about magic comments by Jarek Zmudzinski does. This answer loosely touches the concept, but claims that Rails 2.3 handles this. AFAIK this is actually a change from ruby 1.8 to 1.9. – Spiralis May 8 '11 at 12:11
feedback

Have you tried adding 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.

link|improve this answer
That is an easy fix for me. Later I can dig into why it works :) – Jesper Rønn-Jensen May 12 '10 at 20:18
1  
this answer saved me. – notme Nov 3 '10 at 17:43
41  
this is dark magic. – Felipe Lima Nov 6 '10 at 13:23
Really a life saver. – Fábio Batista Dec 3 '10 at 17:44
12  
show 16 more comments
feedback

If you want to add magic comments on all the source files of a project easily, you can use the magic_encoding gem

sudo gem install magic_encoding

then just call "magic_encoding" from the root of your app.

link|improve this answer
This is great, thanks! – Thiago Ganzarolli Feb 14 at 17:37
feedback

Those slanted double quotes are not ASCII characters. The error message is misleading about them being 'multi-byte'.

link|improve this answer
Why is it misleading? They are multibyte characters. – Matthew Scharley Nov 16 '09 at 3:07
Because ASCII doesn't define any multi-byte encodings. As for as ASCII is concerned, those are gibberish, that happens to be valid in a related encoding. – Novelocrat Nov 16 '09 at 3:22
feedback

Your Answer

 
or
required, but never shown

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