Class: Cmdlet::Comparison::Gte
- Inherits:
-
BaseCmdlet
- Object
- BaseCmdlet
- Cmdlet::Comparison::Gte
- Defined in:
- lib/cmdlet/comparison/gte.rb
Overview
Gte: Return true if left hand side GREATER THAN or EQUAL TO right hand side
Instance Method Summary collapse
-
#call(lhs, rhs) ⇒ String
Truthy value if left hand side GREATER THAN or EQUAL TO right hand side.
Methods inherited from BaseCmdlet
Instance Method Details
#call(lhs, rhs) ⇒ String
Returns truthy value if left hand side GREATER THAN or EQUAL TO right hand side.
12 13 14 |
# File 'lib/cmdlet/comparison/gte.rb', line 12 def call(lhs, rhs) lhs >= rhs end |