# 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