X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FScript%2FServer.pm;h=5f3d508dde70f7c4e8dba4e746e6dfb01e87590b;hb=ee7aabd6613f44e30e6bbc335569711f17607a73;hp=2795439ce5740440e381d05339d44a6b2ea2f135;hpb=bd31e11f1b90959b7b24e67a66f564989562adee;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Script/Server.pm b/lib/Catalyst/Script/Server.pm index 2795439..5f3d508 100644 --- a/lib/Catalyst/Script/Server.pm +++ b/lib/Catalyst/Script/Server.pm @@ -50,7 +50,7 @@ has listen => ( has pidfile => ( traits => [qw(Getopt)], - cmd_aliases => 'pf', + cmd_aliases => 'pid', isa => 'Str', is => 'ro', required => 0 @@ -65,11 +65,39 @@ has keepalive => ( default => 0 ); -has background => ( isa => 'Bool', is => 'ro', required => 0 ); -has app => ( isa => 'Str', is => 'ro', required => 1 ); # THIS IS FUCKING RETARDED HALP PLZ -has restart => ( isa => 'Bool', is => 'ro', required => 0 ); -has restart_delay => ( isa => 'Int', is => 'ro', required => 0 ); -has restart_regex => ( isa => 'Str', is => 'ro', required => 0 ); +has background => ( + traits => [qw(Getopt)], + cmd_aliases => 'bg', + isa => 'Bool', + is => 'ro', + required => 0 +); + +has app => ( isa => 'Str', is => 'ro', required => 1 ); # THIS IS FUCKING RETARDED HALP PLZ +has restart => ( + traits => [qw(Getopt)], + cmd_aliases => 'r', + isa => 'Bool', + is => 'ro', + required => 0 +); + +has restart_delay => ( + traits => [qw(Getopt)], + cmd_aliases => 'rdel', + isa => 'Int', + is => 'ro', + required => 0 +); + +has restart_regex => ( + traits => [qw(Getopt)], + cmd_aliases => 'rxp', + isa => 'Str', + is => 'ro', + required => 0 +); + has follow_symlinks => ( isa => 'Bool', is => 'ro', required => 0 ); my @argv = @ARGV;