help.erb

Path: lib/commander/help_formatters/terminal_compact/help.erb
Last Update: Tue Apr 05 12:26:10 -0400 2011
  <%= program :name %>

  <%= program :description %>

  Commands:

<% for name, command in @commands.sort -%> <% unless alias? name -%>

    <%= "%-20s %s" % [command.name, command.summary || command.description] %>

<% end -%> <% end -%> <% unless @aliases.empty? %>

  Aliases:

<% for alias_name, args in @aliases.sort -%>

    <%= "%-20s %s %s" % [alias_name, command(alias_name).name, args.join(' ')] %>

<% end -%> <% end %> <% unless @options.empty? -%>

  Global Options:

<% for option in @options -%>

    <%= "%-20s %s" % [option[:switches].join(', '), option[:description]] -%>

<% end -%> <% end -%> <% if program :help -%>

  <% for title, body in program(:help) %>
  <%= title %>:
    <%= body %>
  <% end %>

<% end -%>

[Validate]