Sha256: 8c9cdcf3ca306a5db9fc812fceb1d6476429d1d502b0d0bbed90366ff192ab23
Contents?: true
Size: 783 Bytes
Versions: 89
Compression:
Stored size: 783 Bytes
Contents
module Spree module Validations ## # Validates a field based on the maximum length of the underlying DB field, if there is one. class DbMaximumLengthValidator < ActiveModel::Validator def initialize(options) super @field = options[:field].to_s raise ArgumentError, 'a field must be specified to the validator' if @field.blank? end def validate(record) warn '`Spree::Validations::DbMaximumLengthValidator` is deprecated. Use `DbMaximumLengthValidator` instead.' limit = record.class.columns_hash[@field].limit value = record[@field.to_sym] if value && limit && value.to_s.length > limit record.errors.add(@field.to_sym, :too_long, count: limit) end end end end end
Version data entries
89 entries across 89 versions & 1 rubygems