Class: PhonePatternValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
app/validators/phone_pattern_validator.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



2
3
4
5
6
7
8
9
# File 'app/validators/phone_pattern_validator.rb', line 2

def validate_each(record, attribute, value)
if !value.blank?
	first_normalize value
   unless value.match(/^((\d){10})$/i)
     record.errors[attribute] << "10 digit phone number, area-code first, no country code please."
   end
end
end