* 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
-MooseX-Daemonize version 0.07
+MooseX-Daemonize version 0.08
INSTALLATION
use Moose::Role;
use MooseX::Types::Path::Class;
-our $VERSION = 0.07;
+our $VERSION = 0.08;
with 'MooseX::Daemonize::WithPidFile',
'MooseX::Getopt';
my ( $self, $file ) = @_;
open( my $FILE, ">$file" ) || die $!;
close($FILE);
+ sleep 1 while 1;
}
}