Class: Respect::LessThanValidator

Inherits:
Validator
  • Object
show all
Defined in:
lib/respect/less_than_validator.rb

Instance Method Summary (collapse)

Methods inherited from Validator

constraint_name, #to_h

Constructor Details

- (LessThanValidator) initialize(max)

A new instance of LessThanValidator



3
4
5
# File 'lib/respect/less_than_validator.rb', line 3

def initialize(max)
  @max = max
end

Instance Method Details

- (Object) validate(value)



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

def validate(value)
  unless value < @max
    raise ValidationError, "#{value} is not less than #@max"
  end
end