Class: CpfValidator

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

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



8
9
10
11
# File 'lib/validates_cpf.rb', line 8

def validate_each(record, attribute, value)
  key = :"activerecord.errors.models.#{record.class.name.downcase}.attributes.#{attribute.to_s}.invalid"
  record.errors[attribute] << I18n.t(key, :default => :"activerecord.errors.messages.invalid") unless CPF.new(value).valid?
end