diff options
author | Eugene Pimenov <libc@mac.com> | 2009-02-05 07:10:03 +0300 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-02-06 11:03:41 -0800 |
commit | b1c1e3deb7d752292abaff34ba66a3eae030d252 (patch) | |
tree | d39be6e1efe05e722f14c86e23fb1bc242953858 /actionpack/lib/action_view | |
parent | ae36fcedce1ffcf4f3331b444ea1779987c6615a (diff) | |
download | rails-b1c1e3deb7d752292abaff34ba66a3eae030d252.tar.gz rails-b1c1e3deb7d752292abaff34ba66a3eae030d252.tar.bz2 rails-b1c1e3deb7d752292abaff34ba66a3eae030d252.zip |
Ruby 1.9 compat: change encoding of action_view/renderable to utf-8, so erb templates can use utf-8 properly
[#1881 state:committed]
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r-- | actionpack/lib/action_view/renderable.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/renderable.rb b/actionpack/lib/action_view/renderable.rb index 153e14f68b..cb774d8248 100644 --- a/actionpack/lib/action_view/renderable.rb +++ b/actionpack/lib/action_view/renderable.rb @@ -1,3 +1,5 @@ +# encoding: utf-8 + module ActionView # NOTE: The template that this mixin is being included into is frozen # so you cannot set or modify any instance variables |