Method: Gem::OptionParser.inc
- Defined in:
- lib/rubygems/vendor/optparse/lib/optparse.rb
.inc(arg, default = nil) ⇒ Object
Returns an incremented value of default according to arg.
1155 1156 1157 1158 1159 1160 1161 1162 |
# File 'lib/rubygems/vendor/optparse/lib/optparse.rb', line 1155 def self.inc(arg, default = nil) case arg when Integer arg.nonzero? when nil default.to_i + 1 end end |