mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
14 lines
311 B
Ruby
14 lines
311 B
Ruby
|
require 'optparse'
|
||
|
parser = OptionParser.new
|
||
|
parser.on(
|
||
|
'--xxx',
|
||
|
'Option with no argument',
|
||
|
->(value) {p ['Handler proc for -xxx called with value:', value]}
|
||
|
)
|
||
|
parser.on(
|
||
|
'--yyy YYY',
|
||
|
'Option with required argument',
|
||
|
->(value) {p ['Handler proc for -yyy called with value:', value]}
|
||
|
)
|
||
|
parser.parse!
|