Class: ActiveRecord::Validations::PresenceValidator
- Inherits:
-
ActiveModel::Validations::PresenceValidator
- Object
- ActiveModel::Validator
- ActiveModel::EachValidator
- ActiveModel::Validations::PresenceValidator
- ActiveRecord::Validations::PresenceValidator
- Defined in:
- activerecord/lib/active_record/validations/presence.rb
Overview
:nodoc:
Instance Attribute Summary
Attributes inherited from ActiveModel::EachValidator
Attributes inherited from ActiveModel::Validator
Instance Method Summary collapse
Methods inherited from ActiveModel::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, attribute, association_or_value) ⇒ Object
6 7 8 9 10 11 |
# File 'activerecord/lib/active_record/validations/presence.rb', line 6 def validate_each(record, attribute, association_or_value) if record.class._reflect_on_association(attribute) association_or_value = Array.wrap(association_or_value).reject(&:marked_for_destruction?) end super end |