Class: Respect::LessThanValidator
- Inherits:
-
Validator
- Object
- Validator
- Respect::LessThanValidator
- Defined in:
- lib/respect/less_than_validator.rb
Instance Method Summary (collapse)
-
- (LessThanValidator) initialize(max)
constructor
A new instance of LessThanValidator.
- - (Object) validate(value)
Methods inherited from Validator
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 |