Class: Humanoid::Matchers::Gte
- Defined in:
- lib/humanoid/matchers/gte.rb
Instance Method Summary collapse
-
#matches?(value) ⇒ Boolean
Return true if the attribute is greater than or equal to the value.
Methods inherited from Default
Constructor Details
This class inherits a constructor from Humanoid::Matchers::Default
Instance Method Details
#matches?(value) ⇒ Boolean
Return true if the attribute is greater than or equal to the value.
6 7 8 |
# File 'lib/humanoid/matchers/gte.rb', line 6 def matches?(value) determine(value, :>=) end |