diff options
author | Damien Mathieu <42@dmathieu.com> | 2011-07-20 11:45:59 +0200 |
---|---|---|
committer | Damien Mathieu <42@dmathieu.com> | 2011-07-20 11:45:59 +0200 |
commit | 2a371368c91789a4d689d6a84eb20b238c37678a (patch) | |
tree | b9415078be3d9546a8a4550e0c024dab9df18b4a /activesupport | |
parent | af561901a0e4fb5585fd25a1cb3e76b6761c1e91 (diff) | |
download | rails-2a371368c91789a4d689d6a84eb20b238c37678a.tar.gz rails-2a371368c91789a4d689d6a84eb20b238c37678a.tar.bz2 rails-2a371368c91789a4d689d6a84eb20b238c37678a.zip |
missing require of string/encoding to have access to encoding_aware?
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/object/blank.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/blank.rb b/activesupport/lib/active_support/core_ext/object/blank.rb index 5556546822..fe27f45295 100644 --- a/activesupport/lib/active_support/core_ext/object/blank.rb +++ b/activesupport/lib/active_support/core_ext/object/blank.rb @@ -1,4 +1,5 @@ # encoding: utf-8 +require 'active_support/core_ext/string/encoding' class Object # An object is blank if it's false, empty, or a whitespace string. |