NAME
Mojolicious::Command::deploy - Deployment command
SYNOPSIS
use Mojolicious::Command::deploy;
my $deployment = Mojolicious::Command::deploy->new;
$deployment->run(@ARGV);
DESCRIPTION
Mojolicious::Command::deploy lists available deployments.
This command provides the structure for other modules. It is not intended to be used directly.
ATTRIBUTES
Mojolicious::Command::deploy inherits all attributes from Mojolicious::Commands and implements the following new ones.
description
my $description = $deployment->description;
$deployment = $deployment->description('Foo!');
Short description of this command, used for the command list.
hint
my $hint = $deployment->hint;
$deployment = $deployment->hint('Foo!');
Short hint shown after listing available deployment commands.
message
my $message = $deployment->message;
$deployment = $deployment->message('Bar!');
Short usage message shown before listing available deployment commands.
namespaces
my $namespaces = $deployment->namespaces;
$deployment = $deployment->namespaces(['Mojo::Command::deploy']);
Namespaces to search for available deployment commands, defaults to Mojolicious::Command::deploy and Mojo::Command::deploy.
METHODS
Mojolicious::Command::deploy inherits all methods from Mojolicious::Commands.
CREDITS
Chankey Pathak