[Catalyst-commits] r10795 -
Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script
dhoss at dev.catalyst.perl.org
dhoss at dev.catalyst.perl.org
Sat Jul 4 00:58:03 GMT 2009
Author: dhoss
Date: 2009-07-04 00:58:02 +0000 (Sat, 04 Jul 2009)
New Revision: 10795
Modified:
Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm
Log:
follow_symlinks has short option
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-04 00:57:11 UTC (rev 10794)
+++ Catalyst-Runtime/5.80/branches/better_scripts/lib/Catalyst/Script/Server.pm 2009-07-04 00:58:02 UTC (rev 10795)
@@ -98,7 +98,13 @@
required => 0
);
-has follow_symlinks => ( isa => 'Bool', is => 'ro', required => 0 );
+has follow_symlinks => (
+ traits => [qw(Getopt)],
+ cmd_aliases => 'sym',
+ isa => 'Bool',
+ is => 'ro',
+ required => 0
+);
my @argv = @ARGV;
More information about the Catalyst-commits
mailing list