]> git.openstreetmap.org Git - rails.git/blob - lib/validators.rb
Install rubocop in the test environment
[rails.git] / lib / validators.rb
1 module ActiveRecord
2   module Validations
3     module ClassMethods
4       # error message when invalid UTF-8 is detected
5       @@invalid_utf8_message = " is invalid UTF-8"
6
7       ##
8       # validation method to be included like any other validations methods
9       # in the models definitions. this one checks that the named attribute
10       # is a valid UTF-8 format string.
11       def validates_as_utf8(*attrs)
12         validates_each(attrs) do |record, attr, value|
13           record.errors.add(attr, @@invalid_utf8_message) unless UTF8.valid? value
14         end
15       end
16     end
17   end
18 end