Skip to content

Instantly share code, notes, and snippets.

@theotherzach
Created July 22, 2014 18:58
Show Gist options
  • Save theotherzach/cc1db4096b5f0daf0e17 to your computer and use it in GitHub Desktop.
Save theotherzach/cc1db4096b5f0daf0e17 to your computer and use it in GitHub Desktop.
optparse = OptionParser.new do |opts|
opts.banner = "Usage: ghpreview [options] FILE"
opts.separator ""
opts.on("-w", "--watch", "Watch for changes") do |w|
options[:watch] = w
end
opts.on("-a", "--application APP", "Alternate browser") do |a|
options[:application] = a
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment