mirror of
https://github.com/github/rails.git
synced 2026-01-14 00:57:58 -05:00
class Person < ActiveRecord::Base
include MyValidators
validates :name, :presence => true, :uniqueness => true, :length => { :maximum => 100 }
validates :email, :presence => true, :email => true
end
[#3058 status:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
6 lines
244 B
Ruby
6 lines
244 B
Ruby
class EmailValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
record.errors[attribute] << (options[:message] || "is not an email") unless
|
|
value =~ /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
|
|
end
|
|
end |