Class: BooleanValidator

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

Constant Summary collapse

BOOLEAN_VALUES =
ActiveModel::Type::Boolean::TRUE_VALUES + ActiveModel::Type::Boolean::FALSE_VALUES

Instance Method Summary collapse

Instance Method Details

#validate_each(record, attribute, value) ⇒ Object



7
8
9
10
11
# File 'lib/boolean_validator.rb', line 7

def validate_each(record, attribute, value)
  return if BOOLEAN_VALUES.include?(value)

  record.errors.add(attribute, :invalid, options.slice(:message).merge(value: value))
end