class Slop::IntegerOption

Cast the option argument to an Integer.

Constants

INT_STRING_REGEXP

Public Instance Methods

call(value) click to toggle source
# File lib/slop/types.rb, line 73
def call(value)
  value.to_i
end
valid?(value) click to toggle source
# File lib/slop/types.rb, line 69
def valid?(value)
  value =~ INT_STRING_REGEXP
end