Class: TypeValidator

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

Instance Method Summary collapse

Instance Method Details

#klassesObject



8
9
10
# File 'lib/validator/type_validator.rb', line 8

def klasses
  options[:in] || [options[:with]]
end

#optionsObject



4
5
6
# File 'lib/validator/type_validator.rb', line 4

def options
  super.merge(allow_nil: true)
end

#validate_each(record, attribute, value) ⇒ Object



12
13
14
15
16
# File 'lib/validator/type_validator.rb', line 12

def validate_each(record, attribute, value)
  unless klasses.any? { |klass| value.is_a?(klass) }
    record.errors.add(attribute, "must be a #{klasses}, not #{value.class}")
  end
end