aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/validators/email_validator.rb
blob: 774a10b2ba2fc75baa411e7bc938faf4739e2937 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class EmailValidator < ActiveModel::EachValidator
  def validate_each(record, attribute, value)
    unless /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i.match?(value)
      record.errors.add(attribute, message: options[:message] || "is not an email")
    end
  end
end