Fix some rubocop todos
This commit is contained in:
parent
06952ea2b3
commit
77f9aec772
5 changed files with 7 additions and 25 deletions
|
@ -3,10 +3,10 @@ class CharactersValidator < ActiveModel::EachValidator
|
|||
INVALID_URL_CHARS = "/;.,?%#".freeze
|
||||
|
||||
def validate_each(record, attribute, value)
|
||||
record.errors[attribute] << (options[:message] || I18n.t("validations.invalid_characters")) if value =~ /[#{INVALID_CHARS}]/
|
||||
record.errors[attribute] << (options[:message] || I18n.t("validations.invalid_characters")) if /[#{INVALID_CHARS}]/.match?(value)
|
||||
|
||||
if options[:url_safe]
|
||||
record.errors[attribute] << (options[:message] || I18n.t("validations.url_characters", :characters => INVALID_URL_CHARS)) if value =~ /[#{INVALID_URL_CHARS}]/
|
||||
record.errors[attribute] << (options[:message] || I18n.t("validations.url_characters", :characters => INVALID_URL_CHARS)) if /[#{INVALID_URL_CHARS}]/.match?(value)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue