Hi.

When I try to use multibyte characters in my rails controller I get an
invalid multibyte characters error
(<rails_app>/app/controllers/admin_controller.rb:6: invalid multibyte
char (US-ASCII)).

Here is my controller:

contoller AdminController < ApplicationController
  def read
    @title = 'Заголовок страницы'
  end
end

Here is my haml template extraction:

...
%title= @title
...

After I start the WEBrick server and go to
http://localhost:3000/admin/read I get the error. However, if I set #
encoding: utf-8 on top of the controller file the error disappear.

The question is how can I "officially" correct this error? How can I
maintain Rails to proper multibyte characters handling?
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to