class EmailValidator

Public Instance Methods

validate_each(record, attribute, value) click to toggle source
# File activemodel/test/validators/email_validator.rb, line 4
def validate_each(record, attribute, value)
  record.errors[attribute] << (options[:message] || "is not an email") unless
    /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i.match?(value)
end