Class: ActiveModel::Validations::UrlValidator

Inherits:
EachValidator
  • Object
show all
Defined in:
lib/validators/validates_url_format_of.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/validators/validates_url_format_of.rb', line 4

def validate_each(record, attribute, value)
  if value.to_s !~ Validators::URL_FORMAT
    record.errors.add(
      attribute, :invalid_url,
      :message => options[:message], :value => value
    )
  end
end