aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string/encoding.rb
blob: a583b914db43acf4a483f0bc840125449acd6f10 (plain) (blame)
1
2
3
4
5
6
7
8
require 'active_support/deprecation'

class String
  def encoding_aware?
    ActiveSupport::Deprecation.warn 'String#encoding_aware? is deprecated'
    true
  end
end