X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/05e212027339733cf39aa9b7536c3f5f69ba0962..724a9885953e381f2e8805ef9f5bc119c6f924e4:/lib/utf8.rb?ds=sidebyside diff --git a/lib/utf8.rb b/lib/utf8.rb index 5f0d219ba..9e9279deb 100644 --- a/lib/utf8.rb +++ b/lib/utf8.rb @@ -2,13 +2,20 @@ module UTF8 ## # Checks that a string is valid UTF-8 by trying to convert it to UTF-8 # using the iconv library, which is in the standard library. - def self.valid?(str) - return true if str.nil? - Iconv.conv("UTF-8", "UTF-8", str) - return true - - rescue - return false - end -end + if "".respond_to?("valid_encoding?") + def self.valid?(str) + return true if str.nil? + str.valid_encoding? + end + else + require "iconv" + def self.valid?(str) + return true if str.nil? + Iconv.conv("UTF-8", "UTF-8", str) + return true + rescue + return false + end + end +end