Class: MongoMapper::Plugins::Validations::AssociatedValidator
- Inherits:
-
ActiveModel::EachValidator
- Object
- ActiveModel::EachValidator
- MongoMapper::Plugins::Validations::AssociatedValidator
- Defined in:
- lib/mongo_mapper/plugins/validations.rb
Instance Method Summary collapse
Instance Method Details
#validate_each(record, attribute, value) ⇒ Object
68 69 70 71 72 |
# File 'lib/mongo_mapper/plugins/validations.rb', line 68 def validate_each(record, attribute, value) if !Array.wrap(value).all? { |c| c.nil? || c.valid?([:context]) } record.errors.add(attribute, :invalid, :message => [:message], :value => value) end end |