diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-04-01 21:42:03 -0700 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-04-02 09:14:55 -0700 |
commit | 30f3a3df77a63f09a291c70f26a8a4f534827cd2 (patch) | |
tree | 00f227f22d1a315a9816e6d58f2b0cacee87965a /activemodel/lib | |
parent | 3adaef8ae73a3061a9fe4c5e0256d80bc09b1cf4 (diff) | |
download | rails-30f3a3df77a63f09a291c70f26a8a4f534827cd2.tar.gz rails-30f3a3df77a63f09a291c70f26a8a4f534827cd2.tar.bz2 rails-30f3a3df77a63f09a291c70f26a8a4f534827cd2.zip |
errors.rb needs to be declared as UTF-8 [#3941 state:resolved]
Signed-off-by: wycats <wycats@gmail.com>
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/errors.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activemodel/lib/active_model/errors.rb b/activemodel/lib/active_model/errors.rb index 8d28040c32..64b28f6def 100644 --- a/activemodel/lib/active_model/errors.rb +++ b/activemodel/lib/active_model/errors.rb @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + require 'active_support/core_ext/array/wrap' require 'active_support/core_ext/string/inflections' require 'active_support/core_ext/object/blank' |