Class: MongoMapper::Plugins::Validations::AssociatedValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/mongo_mapper/plugins/validations.rb

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



73
74
75
76
77
# File 'lib/mongo_mapper/plugins/validations.rb', line 73

def validate_each(record, attribute, value)
  if !Array.wrap(value).all? { |c| c.nil? || c.valid?(options[:context]) }
    record.errors.add(attribute, :invalid, :message => options[:message], :value => value)
  end
end