config/sublime/Packages/Ruby/option_parse-{-..-}-(optp).sublime-snippet
2012-08-01 21:04:05 -07:00

33 lines
609 B
XML

<snippet>
<content><![CDATA[require "optparse"
options = {${1::default => "args"}}
ARGV.options do |opts|
opts.banner = "Usage: #{File.basename(\$PROGRAM_NAME)} [OPTIONS]${2/^\s*$|(.*\S.*)/(?1: )/}${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
]]></content>
<tabTrigger>optp</tabTrigger>
<scope>source.ruby</scope>
<description>option_parse { .. }</description>
</snippet>