Method: Sfn::Utils::StackParameterValidator#min_value
- Defined in:
- lib/sfn/utils/stack_parameter_validator.rb
#min_value(value, pdef) ⇒ TrueClass, String
Parameter value is greater than or equal to min value
171 172 173 174 175 176 177 |
# File 'lib/sfn/utils/stack_parameter_validator.rb', line 171 def min_value(value, pdef) if value.to_i >= pdef.to_i true else "Value must not be less than #{pdef}" end end |