Class: ActiveRecord::Validations::PresenceValidator
- Inherits:
 - 
      ActiveModel::Validations::PresenceValidator
      
        
- Object
 - ActiveModel::Validations::PresenceValidator
 - ActiveRecord::Validations::PresenceValidator
 
 
- Defined in:
 - lib/active_record/validations/presence.rb
 
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, association_or_value) ⇒ Object
      6 7 8 9 10 11  | 
    
      # File '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  |