[Catalyst-commits] r10844 - Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script

dhoss at dev.catalyst.perl.org dhoss at dev.catalyst.perl.org
Sat Jul 11 01:50:12 GMT 2009


Author: dhoss
Date: 2009-07-11 01:50:11 +0000 (Sat, 11 Jul 2009)
New Revision: 10844

Modified:
   Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm
Log:
fasterized


Modified: Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm
===================================================================
--- Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm	2009-07-11 00:34:54 UTC (rev 10843)
+++ Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm	2009-07-11 01:50:11 UTC (rev 10844)
@@ -20,6 +20,9 @@
     cmd_aliases => 'd',
     isa => 'Bool', 
     is => 'ro',
+    documentation => qq{
+    -d --debug force debug mode    
+    }
 
 );
 
@@ -28,7 +31,9 @@
     cmd_aliases => 'h',
     isa => 'Bool',   
     is => 'ro', 
-    ,  
+    documentation => qq{
+    -h --help display this help and exits    
+    },  
 );
 
 has host => ( 
@@ -153,6 +158,8 @@
 
 }
 
+no Moose;
+__PACKAGE__->meta->make_immutable;
 
 1;
 




More information about the Catalyst-commits mailing list