aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string/encoding.rb
blob: d4781bfe0c78c246fc79cd7eea824145a1d551d6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                  
class String
  if defined?(Encoding) && "".respond_to?(:encode)
    def encoding_aware?
      true
    end
  else
    def encoding_aware?
      false
    end
  end
end