fl00r
fl00r

Reputation: 83680

Add "# coding: utf-8" to all files

Can I somehow configure Rails to avoid the need to add # coding: utf-8 to all files? Or must I add it to each file manually?

UPD

To improve my life I have found this gem:

magic_encoding

It won't fix the problem, but it will add magick line to each file. Related topic: Why are all strings ASCII-8BIT after I upgraded to Rails 3?

Upvotes: 12

Views: 3768

Answers (1)

Mario Visic
Mario Visic

Reputation: 2663

In a rails application you can specify the default chracter encoding in your application config.

Add the following code inside the Application class in in config/application.rb

Looks something like:

# Configure the default encoding used in templates for Ruby 1.9.
config.encoding = "utf-8"

Upvotes: 3

Related Questions