HelpCommand

Constructors

this
this()
Undocumented in source.

Members

Functions

execute
int execute(Dub dub, string[] free_args, string[] app_args)

HelpCommand.execute is not supposed to be called, use cast(HelpCommand)this to check if help was requested before execution.

prepare
void prepare(CommandArgs args)

HelpCommand.prepare is not supposed to be called, use cast(HelpCommand)this to check if help was requested before execution.

Inherited Members

From Command

name
string name;
Undocumented in source.
argumentsPattern
string argumentsPattern;
Undocumented in source.
description
string description;
Undocumented in source.
helpText
string[] helpText;
Undocumented in source.
acceptsAppArgs
bool acceptsAppArgs;
Undocumented in source.
hidden
bool hidden;
Undocumented in source.
prepare
void prepare(CommandArgs args)

Parses all known command line options without executing any actions.

prepareDub
Dub prepareDub(CommonOptions options)

Initialize the dub instance used by execute

execute
int execute(Dub dub, string[] free_args, string[] app_args)

Executes the actual action.

Meta