Class: ActiveModel::Validations::CpfValidator

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

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attr_name, value) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/active_model/validations/cpf_validator.rb', line 4

def validate_each(record, attr_name, value)
  return if options[:allow_nil] && value.nil?

  
  unless(CPF.new(value).valid?() rescue false)
    record.errors.add(attr_name, (options[:message] || :cpf_not_valid))
  end
end