1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/optparse] Moved rdoc files to doc/optparse

cccb28e0de
This commit is contained in:
Nobuyoshi Nakada 2021-04-11 09:03:07 +09:00
parent cb01437c24
commit f89486965b
53 changed files with 8 additions and 8 deletions

View file

@ -0,0 +1,9 @@
require 'optparse'
parser = OptionParser.new
parser.on('-x [XXX]', '--xxx', 'Optional argument via short name') do |value|
p ['--xxx', value]
end
parser.on('-y', '--yyy [YYY]', 'Optional argument via long name') do |value|
p ['--yyy', value]
end
parser.parse!