Sha256: 04bf329ede0a058889174edb2258452b9e22c57e5dae744697c02e999f6b219e

Contents?: true

Size: 795 Bytes

Versions: 6

Compression:

Stored size: 795 Bytes

Contents

<%= cmd.name %> - <%= cmd.desc %>

Usage:
<%- if cmd.has_subcommands? -%>
    <%= cmd.name %> <command>
<%- else -%>
    <%= cmd.name %> [options] <%= argument_list %>
<%- end -%>
<%- if not(cmd.has_subcommands?) and not(arguments.empty?) -%>

Arguments:
  <%- arguments.each do |arg| -%>
    <%= argument_heading(arg).ljust(argument_heading_width) %>    <%= arg.desc %>
  <%- end -%>
<%- end -%>
<%- if cmd.has_subcommands? -%>

Commands:
  <%- cmd.subcommand.each do |key, subcmd| -%>
    <%= key.ljust(subcommand_heading_width) %>    <%= subcmd.desc %>
  <%- end -%>
<%- end -%>
<%- if not(options.empty?) -%>

Options:
  <%- options.each do |opt| -%>
    <%= option_heading(opt).ljust(option_heading_width) %>    <%= opt.desc %>
  <%- end -%>
<%- end -%>

PIONE version <%= Pione::VERSION %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pione-0.5.0 lib/rootage/help.txt.erb
pione-0.5.0.alpha.2 lib/rootage/help.txt.erb
pione-0.5.0.alpha.1 lib/rootage/help.txt.erb
pione-0.4.2 lib/rootage/help.txt.erb
pione-0.4.1 lib/rootage/help.txt.erb
pione-0.4.0 lib/rootage/help.txt.erb