mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
e67fdc5aeb
This reverts commit4e105385d0
, reversing changes made to62b4383909
. The change in Ruby that made those changes required was reverted in8852fa8760
9 lines
300 B
Ruby
9 lines
300 B
Ruby
# 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
|