restart regex has a short option
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / Server.pm
index f0f2894..5f3d508 100644 (file)
@@ -17,23 +17,87 @@ with 'MooseX::Getopt';
 
 has help => ( 
     traits => [qw(Getopt)],
+    cmd_aliases => 'h',
     isa => 'Bool',   
     is => 'ro', 
     required => 0, 
-    default => 0,
-    cmd_aliases => 'h',  
+    default => 0,  
+);
+
+has host => ( 
+    isa => 'Str',    
+    is => 'ro', 
+    required => 0, 
+    default =>  "localhost" 
+);
+
+has fork => ( 
+    traits => [qw(Getopt)],
+    cmd_aliases => 'f',
+    isa => 'Bool',
+    is => 'ro', 
+    required => 0 
+);
+
+has listen => ( 
+    traits => [qw(Getopt)],
+    cmd_aliases => 'l',
+    isa => 'Int',
+    is => 'ro', 
+    required => 0, 
+    default => "3000" 
+);
+
+has pidfile => ( 
+    traits => [qw(Getopt)],
+    cmd_aliases => 'pid',
+    isa => 'Str',    
+    is => 'ro', 
+    required => 0 
+);
+
+has keepalive => ( 
+    traits => [qw(Getopt)],
+    cmd_aliases => 'k',
+    isa => 'Bool',   
+    is => 'ro', 
+    required => 0, 
+    default => 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 host            => ( isa => 'Str',    is => 'ro', required => 0, default =>  "localhost" );
-has fork            => ( isa => 'Bool',   is => 'ro', required => 0 );
-has listen          => ( isa => 'Int',    is => 'ro', required => 0, default => "3000" );
-has pidfile         => ( isa => 'Str',    is => 'ro', required => 0 );
-has keepalive       => ( isa => 'Bool',   is => 'ro', required => 0, default => 0 );
-has background      => ( isa => 'Bool',   is => 'ro', required => 0 );
-has app             => ( isa => 'Str',    is => 'ro', required => 1 );
-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 follow_symlinks => ( isa => 'Bool',   is => 'ro', required => 0 );
 
 my @argv = @ARGV;