X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/06952ea2b3f295c5d48bbdbc959571b07aa9be95..77f9aec772eb4bb1a413e310dd30a8532dccab5c:/app/validators/whitespace_validator.rb diff --git a/app/validators/whitespace_validator.rb b/app/validators/whitespace_validator.rb index d177df92a..333ad0e05 100644 --- a/app/validators/whitespace_validator.rb +++ b/app/validators/whitespace_validator.rb @@ -1,11 +1,11 @@ class WhitespaceValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) unless options.fetch(:leading, true) - record.errors[attribute] << (options[:message] || I18n.t("validations.leading_whitespace")) if value =~ /\A\s/ + record.errors[attribute] << (options[:message] || I18n.t("validations.leading_whitespace")) if /\A\s/.match?(value) end unless options.fetch(:trailing, true) - record.errors[attribute] << (options[:message] || I18n.t("validations.trailing_whitespace")) if value =~ /\s\z/ + record.errors[attribute] << (options[:message] || I18n.t("validations.trailing_whitespace")) if /\s\z/.match?(value) end end end