Sha256: 97707609366f1c287bc5bc049b82846b134fed694d0cd41c950cbd95a7c6358b
Contents?: true
Size: 356 Bytes
Versions: 13
Compression:
Stored size: 356 Bytes
Contents
require 'optparse' parser = OptionParser.new parser.on('-x', '--xxx', 'Short and long, no argument') do |value| p ['--xxx', value] end parser.on('-yYYY', '--yyy', 'Short and long, required argument') do |value| p ['--yyy', value] end parser.on('-z [ZZZ]', '--zzz', 'Short and long, optional argument') do |value| p ['--zzz', value] end parser.parse!
Version data entries
13 entries across 13 versions & 3 rubygems