]> git.openstreetmap.org Git - rails.git/blobdiff - lib/utf8.rb
Refactoring
[rails.git] / lib / utf8.rb
index e669d8aaef0ff42a3c7bbd9d9db252fcdb4dd484..613e3005ea68aedf5815f0c37e023fda557ced8d 100644 (file)
@@ -2,20 +2,9 @@ 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.
-  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?
 
-    def self.valid?(str)
-      return true if str.nil?
-      Iconv.conv("UTF-8", "UTF-8", str)
-      return true
-    rescue
-      return false
-    end
+    str.valid_encoding?
   end
 end