Sha256: 84434dee915d98fe0c24cfebd6b92f9a44866e818b03fc26f2e4c99172bbe9c5
Contents?: true
Size: 803 Bytes
Versions: 2
Compression:
Stored size: 803 Bytes
Contents
# frozen_string_literal: true class AlphaValidator < ActiveModel::EachValidator def validate_each(record, attribute, value) return if valid?(value.to_s, options) record.errors[attribute] << (options[:message] || I18n.t('active_validation.errors.messages.alpha')) end private def valid_format?(value, options) strict = options[:strict] value =~ case options[:case] when :lower strict ? /^[a-z]+$/ : /^[a-z ]+$/ when :upper strict ? /^[A-Z]+$/ : /^[A-Z ]+$/ else strict ? /^[A-Za-z]+$/i : /^[A-Za-z ]+$/i end end def valid_length?(value) value.present? end def valid?(value, options) valid_length?(value) && valid_format?(value, options) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_validation-5.0.0 | lib/active_validation/validators/alpha_validator.rb |
active_validation-4.1.0 | lib/active_validation/validators/alpha_validator.rb |