From: Stevan Little Date: Sun, 7 Sep 2008 12:40:07 +0000 (+0000) Subject: 0.08 X-Git-Tag: 0.15~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Daemonize.git;a=commitdiff_plain;h=91e059f21638b703dd48a700b4d9207a5622dfd2 0.08 --- diff --git a/Changes b/Changes index aa8e4cc..df174fb 100644 --- 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 --- a/README +++ b/README @@ -1,4 +1,4 @@ -MooseX-Daemonize version 0.07 +MooseX-Daemonize version 0.08 INSTALLATION diff --git a/lib/MooseX/Daemonize.pm b/lib/MooseX/Daemonize.pm index 3f39763..2755c53 100644 --- a/lib/MooseX/Daemonize.pm +++ b/lib/MooseX/Daemonize.pm @@ -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'; diff --git a/t/01.filecreate.t b/t/01.filecreate.t index d961841..b0af491 100644 --- a/t/01.filecreate.t +++ b/t/01.filecreate.t @@ -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; } }