Class: Alchemrest::Transforms::Constraint::GreaterThan
- Inherits:
-
Alchemrest::Transforms::Constraint
- Object
- Alchemrest::Transforms::Constraint
- Alchemrest::Transforms::Constraint::GreaterThan
- Defined in:
- lib/alchemrest/transforms/constraint/greater_than.rb
Instance Method Summary collapse
Instance Method Details
#description ⇒ Object
13 14 15 |
# File 'lib/alchemrest/transforms/constraint/greater_than.rb', line 13 def description "greater than #{value}" end |
#meets_conditions?(input) ⇒ Boolean
9 10 11 |
# File 'lib/alchemrest/transforms/constraint/greater_than.rb', line 9 def meets_conditions?(input) input > value end |