1 class InvalidUrlCharsValidator < ActiveModel::EachValidator
2 INVALID_URL_CHARS = "/;.,?%#".freeze
4 def validate_each(record, attribute, value)
5 record.errors[attribute] << (options[:message] || I18n.t("validations.invalid_url_chars", :invalid_url_chars => INVALID_URL_CHARS)) if value =~ /[#{INVALID_URL_CHARS}]/