Class: LicenseValidator::Validations::StateGa
- Defined in:
- lib/license_validator/validations/state_ga.rb
Instance Attribute Summary
Attributes inherited from Base
#driver, #errors, #infos, #warnings
Instance Method Summary collapse
Methods inherited from Base
human_attribute_name, #initialize, lookup_ancestors, #read_attribute_for_validation, #validation_results
Constructor Details
This class inherits a constructor from LicenseValidator::Validations::Base
Instance Method Details
#validate ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/license_validator/validations/state_ga.rb', line 7 def validate super unless driver.license_num.match?(/\A\d{9}\z/i) errors.add(:license_num, 'License number requires 9 numeric digits for GA.') end if driver.first_name.blank? errors.add(:first_name, 'First name required for GA.') end if driver.last_name.blank? errors.add(:last_name, 'Last name required for GA.') end return if driver.dob.present? errors.add(:dob, 'D.O.B. required for GA.') end |