0.08
Stevan Little [Sun, 7 Sep 2008 12:40:07 +0000 (12:40 +0000)]
Changes
README
lib/MooseX/Daemonize.pm
t/01.filecreate.t

diff --git a/Changes b/Changes
index aa8e4cc..df174fb 100644 (file)
--- a/Changes
+++ b/Changes
@@ -4,6 +4,7 @@ Revision history for MooseX-Daemonize
     * t/
       - Removed usage of Cwd in favour of a temporary dir to prevent test fails
         when running in an unwritable dir
+      - patch to ensure that t/01.filecreate.t passes (thanks to Jose Luis Rey)
 
 0.07 Saturday, May 24, 2008
     * MooseX::Daemonize
diff --git a/README b/README
index ab8ad53..af782a7 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-MooseX-Daemonize version 0.07
+MooseX-Daemonize version 0.08
 
 INSTALLATION
 
index 3f39763..2755c53 100644 (file)
@@ -3,7 +3,7 @@ use strict;    # because Kwalitee is pedantic
 use Moose::Role;
 use MooseX::Types::Path::Class;
 
-our $VERSION = 0.07;
+our $VERSION = 0.08;
 
 with 'MooseX::Daemonize::WithPidFile',
      'MooseX::Getopt';
index d961841..b0af491 100644 (file)
@@ -40,6 +40,7 @@ $ENV{MX_DAEMON_STDERR} = catfile($dir, 'Err.txt');
         my ( $self, $file ) = @_;
         open( my $FILE, ">$file" ) || die $!;
         close($FILE);
+        sleep 1 while 1;
     }
 }