Switch to using the zeitwork autoloader

This commit is contained in:
Tom Hughes 2020-12-10 14:46:41 +00:00
parent b8a2cf0f2b
commit 127880a73f
3 changed files with 7 additions and 15 deletions

View file

@ -2,7 +2,7 @@
# 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.
class Utf8Validator < ActiveModel::EachValidator
class UTF8Validator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
record.errors.add(attribute, " is invalid UTF-8") unless UTF8.valid? value
end