summaryrefslogtreecommitdiff
path: root/doc/optparse/ruby/long_with_negation.rb
blob: 3f2913c3614280e99a07ea7568fc3485f1c89d03 (plain)
1
2
3
4
5
6
require 'optparse'
parser = OptionParser.new
parser.on('--[no-]binary', 'Long name with negation') do |value|
  p [value, value.class]
end
parser.parse!