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
12
doc/optparse/ruby/missing_options.rb
Normal file
12
doc/optparse/ruby/missing_options.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
require 'optparse'
|
||||
parser = OptionParser.new
|
||||
parser.on('-x', '--xxx', 'Short and long, no argument')
|
||||
parser.on('-yYYY', '--yyy', 'Short and long, required argument')
|
||||
parser.on('-z [ZZZ]', '--zzz', 'Short and long, optional argument')
|
||||
options = {}
|
||||
parser.parse!(into: options)
|
||||
required_options = [:xxx, :zzz]
|
||||
missing_options = required_options - options.keys
|
||||
unless missing_options.empty?
|
||||
fail "Missing required options: #{missing_options}"
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue