Class: BooleanValidator

Inherits:
ActiveModel::EachValidator
  • Object
show all
Defined in:
lib/active_validation/validators/boolean_validator.rb

Constant Summary collapse

FALSE_VALUES =
[false, 0, '0', 'f', 'F', 'false', 'FALSE'].freeze
TRUE_VALUES =
[true, 1, '1', 't', 'T', 'true', 'TRUE'].freeze

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



5
6
7
8
9
10
# File 'lib/active_validation/validators/boolean_validator.rb', line 5

def validate_each(record, attribute, value)
  unless TRUE_VALUES.include?(value) || FALSE_VALUES.include?(value)
    record.errors[attribute] <<
      (options[:message] || I18n.t('active_validation.errors.messages.boolean'))
  end
end