class DataMaps::When::Gte
Condition
to check for greater or equal than
@since 0.0.1
Public Instance Methods
execute(data)
click to toggle source
Check if data is greater or equal than the option
@param [mixed] data
# File lib/data_maps/when/comparison.rb, line 22 def execute(data) data >= option end