1 class InvalidCharsValidator < ActiveModel::EachValidator
2 INVALID_CHARS = "\x00-\x08\x0b-\x0c\x0e-\x1f\x7f\ufffe\uffff".freeze
4 def validate_each(record, attribute, value)
5 record.errors[attribute] << (options[:message] || I18n.t("validations.invalid_chars")) if value =~ /[#{INVALID_CHARS}]/