]> git.openstreetmap.org Git - rails.git/blobdiff - lib/validators.rb
Set fixture class when using gpx_files
[rails.git] / lib / validators.rb
index 640a495649fc82a32b4db508a5a02a74323c89d2..69cabb942540bed9dbe5350593efc63962b7005f 100644 (file)
@@ -1,20 +1,15 @@
 module ActiveRecord
   module Validations
     module ClassMethods
-      
-      # error message when invalid UTF-8 is detected
-      @@invalid_utf8_message = " is invalid UTF-8"
-
       ##
       # validation method to be included like any other validations methods
       # in the models definitions. this one checks that the named attribute
       # is a valid UTF-8 format string.
       def validates_as_utf8(*attrs)
         validates_each(attrs) do |record, attr, value|
-          record.errors.add(attr, @@invalid_utf8_message) unless UTF8.valid? value
+          record.errors.add(attr, " is invalid UTF-8") unless UTF8.valid? value
         end
-      end    
-
+      end
     end
   end
 end