aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string/encoding.rb
blob: dc635ed6a530c0e8796fc69c43df26c7b81a00b6 (plain) (tree)
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', caller
    true
  end
end