The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mojolicious::Command::Generate - Generator Command

SYNOPSIS

    use Mojolicious::Command::Generate;

    my $generator = Mojolicious::Command::Generate->new;
    $generator->run(@ARGV);

DESCRIPTION

Mojolicious::Command::Generate lists available generators.

ATTRIBUTES

Mojolicious::Command::Generate inherits all attributes from Mojo::Commands and implements the following new ones.

description

    my $description = $generator->description;
    $generator      = $generator->description('Foo!');

Short description of this command, used for the command list.

hint

    my $hint   = $generator->hint;
    $generator = $generator->hint('Foo!');

Short hint shown after listing available generator commands.

message

    my $message = $generator->message;
    $generator  = $generator->message('Bar!');

Short usage message shown before listing available generator commands.

namespaces

    my $namespaces = $generator->namespaces;
    $generator     = $generator->namespaces(['Mojo::Command::Generate']);

Namespaces to search for available generator commands, defaults to Mojo::Command::Generate and Mojolicious::Command::Generate.

METHODS

Mojolicious::Command::Generate inherits all methods from Mojo::Commands.

SEE ALSO

Mojolicious, Mojolicious::Guides, http://mojolicious.org.