зеркало из https://github.com/github/ruby.git
10 строки
187 B
Ruby
10 строки
187 B
Ruby
|
require 'getoptlong'
|
||
|
|
||
|
options = GetoptLong.new(
|
||
|
['--xxx', GetoptLong::NO_ARGUMENT],
|
||
|
['--xyz', GetoptLong::NO_ARGUMENT]
|
||
|
)
|
||
|
options.each do |option, argument|
|
||
|
p [option, argument]
|
||
|
end
|