Created
May 28, 2012 12:31
-
-
Save benphelps/2818925 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class EmailValidator < ActiveModel::EachValidator | |
def validate_each(record, attribute, value) | |
unless value =~ /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i | |
record.errors[attribute] << (options[:message] || "is not an email") | |
end | |
end | |
end | |
class Person < ActiveRecord::Base | |
validates :email, :presence => true, :email => true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment