]> git.openstreetmap.org Git - rails.git/blob - app/validators/trailing_whitespace_validator.rb
Improve consistency of text validations
[rails.git] / app / validators / trailing_whitespace_validator.rb
1 class TrailingWhitespaceValidator < ActiveModel::EachValidator
2   def validate_each(record, attribute, value)
3     record.errors[attribute] << (options[:message] || I18n.t("validations.trailing_whitespace")) if value =~ /\s\z/
4   end
5 end