Chomp trailing space
Tomas Doran [Mon, 23 Nov 2009 23:43:32 +0000 (23:43 +0000)]
lib/Catalyst/Script/FastCGI.pm
lib/Catalyst/ScriptRole.pm

index 3179803..aadd931 100644 (file)
@@ -27,15 +27,15 @@ has pidfile => (
 
 has daemon => (
     traits => [qw(Getopt)],
-    isa => Bool,   
-    is => 'ro', 
-    cmd_aliases => 'd', 
+    isa => Bool,
+    is => 'ro',
+    cmd_aliases => 'd',
     documentation => 'Daemonize (go into the background)',
 );
 
 has manager => (
     traits => [qw(Getopt)],
-    isa => Str,    
+    isa => Str,
     is => 'ro',
     cmd_aliases => 'M',
     documentation => 'Use a different FastCGI process manager class',
@@ -43,25 +43,25 @@ has manager => (
 
 has keeperr => (
     traits => [qw(Getopt)],
-    cmd_aliases => 'e', 
-    isa => Bool,   
-    is => 'ro',  
+    cmd_aliases => 'e',
+    isa => Bool,
+    is => 'ro',
     documentation => 'Log STDERR',
 );
 
 has nproc => (
     traits => [qw(Getopt)],
-    cmd_aliases => 'n',  
+    cmd_aliases => 'n',
     isa => Int,
-    is => 'ro',  
+    is => 'ro',
     documentation => 'Specify a number of child processes',
 );
 
 has detach => (
     traits => [qw(Getopt)],
-    cmd_aliases => 'det', 
-    isa => Bool,   
-    is => 'ro',  
+    cmd_aliases => 'det',
+    isa => Bool,
+    is => 'ro',
     documentation => 'Detach this FastCGI process',
 );
 
index d65cfb5..53432e3 100644 (file)
@@ -77,11 +77,11 @@ Catalyst::ScriptRole - Common functionality for Catalyst scripts.
     package MyApp::Script::Foo;
     use Moose;
     use namespace::autoclean;
-    
+
     with 'Catalyst::Script::Role';
-    
+
      sub _application_args { ... }
-    
+
 =head1 DESCRIPTION
 
 Role with the common functionality of Catalyst scripts.
@@ -114,4 +114,4 @@ This library is free software, you can redistribute it and/or modify
 it under the same terms as Perl itself.
 
 =cut
-    
+