Class: PisPasepValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/pis_pasep_validator.rb

Defined Under Namespace

Classes: PisPasep

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



4
5
6
# File 'lib/pis_pasep_validator.rb', line 4

def validate_each(record, attribute, value)
  record.errors.add(attribute, options[:message]) unless PisPasep.valid?(value)
end