SumOfUs/Champaign

View on GitHub
app/lib/email_validator.rb

Summary

Maintainability
A
0 mins
Test Coverage
class EmailValidator < ActiveModel::EachValidator
  def validate_each(record, attribute, value)
    if value && !value.match?(/\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i)
      record.errors[attribute] << (options[:message] || 'is not an email')
    end
  end
end