Class: ActiveRecord::Validations::AssociatedValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- ActiveRecord::Validations::AssociatedValidator
- Defined in:
- lib/active_record/validations/associated.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
4 5 6 7 8 |
# File 'lib/active_record/validations/associated.rb', line 4 def validate_each(record, attribute, value) if Array.wrap(value).reject {|r| r.marked_for_destruction? || r.valid?}.any? record.errors.add(attribute, :invalid, .merge(:value => value)) end end |