Class: ActiveModel::Validations::AbsenceValidator

Inherits:
EachValidator show all
Defined in:
activemodel/lib/active_model/validations/absence.rb

Overview

Active Model Absence Validator

Instance Attribute Summary

Attributes inherited from EachValidator

#attributes

Attributes inherited from ActiveModel::Validator

#options

Instance Method Summary collapse

Methods inherited from EachValidator

#check_validity!, #initialize, #validate

Methods inherited from ActiveModel::Validator

#initialize, kind, #kind, #validate

Constructor Details

This class inherits a constructor from ActiveModel::EachValidator

Instance Method Details

#validate_each(record, attr_name, value) ⇒ Object

:nodoc:



5
6
7
# File 'activemodel/lib/active_model/validations/absence.rb', line 5

def validate_each(record, attr_name, value)
  record.errors.add(attr_name, :present, options) if value.present?
end