Sha256: 2bc09ca57577fa66686dab522785b8d233b5dd2fb38b84cc0d501d93610b4045
Contents?: true
Size: 870 Bytes
Versions: 27
Compression:
Stored size: 870 Bytes
Contents
# frozen_string_literal: true # encoding: utf-8 module Mongoid module Validatable # Adds localization support to validations. module Localizable # Validates each for localized fields. # # @example Validate localized fields. # validator.validate_each(model, :name, "value") # # @param [ Document ] document The document. # @param [ Symbol, String ] attribute The attribute to validate. # @param [ Object ] value The attribute value. # # @since 2.4.2 def validate_each(document, attribute, value) field = document.fields[document.database_field_name(attribute)] if field.try(:localized?) && !value.blank? value.values.each do |_value| super(document, attribute, _value) end else super end end end end end
Version data entries
27 entries across 27 versions & 2 rubygems