aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-07-20 03:09:49 -0700
committerXavier Noria <fxn@hashref.com>2011-07-20 03:09:49 -0700
commit82b5ebb7109bc52478d0bd3894acd02730adf0c1 (patch)
treeb9415078be3d9546a8a4550e0c024dab9df18b4a
parentaf561901a0e4fb5585fd25a1cb3e76b6761c1e91 (diff)
parent2a371368c91789a4d689d6a84eb20b238c37678a (diff)
downloadrails-82b5ebb7109bc52478d0bd3894acd02730adf0c1.tar.gz
rails-82b5ebb7109bc52478d0bd3894acd02730adf0c1.tar.bz2
rails-82b5ebb7109bc52478d0bd3894acd02730adf0c1.zip
Merge pull request #2164 from dmathieu/missing_require
missing require of string/encoding to have access to encoding_aware?
-rw-r--r--activesupport/lib/active_support/core_ext/object/blank.rb1
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.