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