mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
34 lines
593 B
Plaintext
34 lines
593 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: optp
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: option_parse { .. }
|
|
## condition: "source.ruby"
|
|
# --
|
|
require "optparse"
|
|
|
|
options = {${1::default => "args"}}
|
|
|
|
ARGV.options do |opts|
|
|
opts.banner = "Usage: #{File.basename(\$PROGRAM_NAME)} [OPTIONS]${2:$(if (string= yas/text "") "" " ")}${2:OTHER_ARGS}"
|
|
|
|
opts.separator ""
|
|
opts.separator "Specific Options:"
|
|
|
|
$0
|
|
|
|
opts.separator "Common Options:"
|
|
|
|
opts.on( "-h", "--help",
|
|
"Show this message." ) do
|
|
puts opts
|
|
exit
|
|
end
|
|
|
|
begin
|
|
opts.parse!
|
|
rescue
|
|
puts opts
|
|
exit
|
|
end
|
|
end
|