Class: ActiveRecord::Validations::AssociatedValidator

Inherits:
ActiveModel::EachValidator show all
Defined in:
activerecord/lib/active_record/validations/associated.rb

Overview

:nodoc:

Instance Attribute Summary

Attributes inherited from ActiveModel::EachValidator

#attributes

Attributes inherited from ActiveModel::Validator

#options

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, value) ⇒ Object



6
7
8
9
10
# File 'activerecord/lib/active_record/validations/associated.rb', line 6

def validate_each(record, attribute, value)
  if Array(value).reject { |r| valid_object?(r) }.any?
    record.errors.add(attribute, :invalid, **options.merge(value: value))
  end
end