module DeepTest::Option::Integer

Public Class Methods

from_string(s) click to toggle source
# File lib/deep_test/option.rb, line 45
def self.from_string(s)
  s.to_i
end
to_string(i) click to toggle source
# File lib/deep_test/option.rb, line 41
def self.to_string(i)
  i.to_s
end