diff options
author | Arun Agrawal <arunagw@gmail.com> | 2013-07-03 19:46:01 +0200 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2013-07-03 19:50:19 +0200 |
commit | 36321d85e9975da7ef2667882cab742f9db0ad4b (patch) | |
tree | f19f7f54cf0183cb9fc16e01debc9dafcc588e90 /activesupport/lib | |
parent | c9bbac46ddfc68caff6cd8a95c8d0fd045bd9201 (diff) | |
download | rails-36321d85e9975da7ef2667882cab742f9db0ad4b.tar.gz rails-36321d85e9975da7ef2667882cab742f9db0ad4b.tar.bz2 rails-36321d85e9975da7ef2667882cab742f9db0ad4b.zip |
Remove deprecated `String#encoding_aware?`
core extensions (`core_ext/string/encoding`).
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/encoding.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/encoding.rb b/activesupport/lib/active_support/core_ext/string/encoding.rb deleted file mode 100644 index a583b914db..0000000000 --- a/activesupport/lib/active_support/core_ext/string/encoding.rb +++ /dev/null @@ -1,8 +0,0 @@ -require 'active_support/deprecation' - -class String - def encoding_aware? - ActiveSupport::Deprecation.warn 'String#encoding_aware? is deprecated' - true - end -end |