Created
June 24, 2017 11:45
-
-
Save mattwynne/dde55b47f0e8a187985d24b7b5a2e3e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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