Skip to content

Instantly share code, notes, and snippets.

@mattwynne
Created June 24, 2017 11:45
Show Gist options
  • Save mattwynne/dde55b47f0e8a187985d24b7b5a2e3e9 to your computer and use it in GitHub Desktop.
Save mattwynne/dde55b47f0e8a187985d24b7b5a2e3e9 to your computer and use it in GitHub Desktop.
require 'optparse'
def tags_msg
"TODO"
end
def add_tag(value)
puts "add tag: #{value}"
end
ARGV.options do |opts|
opts.on('-t TAG_EXPRESSION', '--tags TAG_EXPRESSION', *tags_msg) { |v| add_tag v }
end.parse!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment