mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
parent
cb01437c24
commit
f89486965b
53 changed files with 8 additions and 8 deletions
9
doc/optparse/ruby/explicit_hash_values.rb
Normal file
9
doc/optparse/ruby/explicit_hash_values.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
require 'optparse'
|
||||
parser = OptionParser.new
|
||||
parser.on('-xXXX', {foo: 0, bar: 1}, 'Values for required argument' ) do |value|
|
||||
p ['-x', value]
|
||||
end
|
||||
parser.on('-y [YYY]', {baz: 2, bat: 3}, 'Values for optional argument') do |value|
|
||||
p ['-y', value]
|
||||
end
|
||||
parser.parse!
|
Loading…
Add table
Add a link
Reference in a new issue