]> git.openstreetmap.org Git - rails.git/blob - app/validators/whitespace_validator.rb
Merge pull request #1558 from plarus/master
[rails.git] / app / validators / whitespace_validator.rb
1 class WhitespaceValidator < ActiveModel::EachValidator
2   def validate_each(record, attribute, value)
3     record.errors.add(attribute, options[:message] || I18n.t("validations.leading_whitespace")) if !options.fetch(:leading, true) && /\A\s/.match?(value)
4     record.errors.add(attribute, options[:message] || I18n.t("validations.trailing_whitespace")) if !options.fetch(:trailing, true) && /\s\z/.match?(value)
5   end
6 end