Class: CpfValidator

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

Defined Under Namespace

Classes: Cpf

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



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

def validate_each(record, attribute, value)
  message = options[:message].presence || :invalid
  record.errors.add(attribute, message) unless Cpf.valid?(value)
end