blob: f733c45cf038a0753758d1e904481018973251ae (
plain) (
blame)
1
2
3
4
5
6
|
class EmailValidator < ActiveModel::EachValidator
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
end
|