Sha256: 8172b0ca4517a2131426a27b180fc58c8eecd55a18ed3322aece08715316a57b
Contents?: true
Size: 467 Bytes
Versions: 1
Compression:
Stored size: 467 Bytes
Contents
# frozen_string_literal: true class BooleanValidator < ActiveModel::EachValidator FALSE_VALUES ||= [false, 0, '0', 'f', 'F', 'false', 'FALSE'].freeze TRUE_VALUES ||= [true, 1, '1', 't', 'T', 'true', 'TRUE'].freeze def validate_each(record, attribute, value) return if TRUE_VALUES.include?(value) || FALSE_VALUES.include?(value) record.errors[attribute] << (options[:message] || I18n.t('active_validation.errors.messages.boolean')) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
active_validation-5.1.0 | lib/active_validation/validators/boolean_validator.rb |