From: Chris Prather Date: Mon, 5 Oct 2009 19:21:40 +0000 (-0400) Subject: clean stuff up for a 0.09 release X-Git-Tag: 0.15~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=69186a4879a2ddfed228c03e7a25d5455921dfb0;p=gitmo%2FMooseX-Daemonize.git clean stuff up for a 0.09 release --- diff --git a/Changes b/Changes index 5a13539..c36a8d7 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,7 @@ Revision history for MooseX-Daemonize +0.09 2009-10-05 + * s/no_plan => 1/'no_plan'/g (Dave Rolsky) + * Synchronize Version numbers 0.08 Sunday, Sept. 7, 2008 * t/ diff --git a/MANIFEST b/MANIFEST deleted file mode 100644 index cecac56..0000000 --- a/MANIFEST +++ /dev/null @@ -1,32 +0,0 @@ -Changes -inc/Module/AutoInstall.pm -inc/Module/Install.pm -inc/Module/Install/AutoInstall.pm -inc/Module/Install/Base.pm -inc/Module/Install/Can.pm -inc/Module/Install/Fetch.pm -inc/Module/Install/Include.pm -inc/Module/Install/Makefile.pm -inc/Module/Install/Metadata.pm -inc/Module/Install/Win32.pm -inc/Module/Install/WriteAll.pm -lib/MooseX/Daemonize.pm -lib/MooseX/Daemonize/Core.pm -lib/MooseX/Daemonize/Pid.pm -lib/MooseX/Daemonize/Pid/File.pm -lib/MooseX/Daemonize/WithPidFile.pm -lib/Test/MooseX/Daemonize.pm -Makefile.PL -MANIFEST -MANIFEST.SKIP -META.yml -README -t/00.load.t -t/01.filecreate.t -t/02.stdout.t -t/10.pidfile.t -t/20.core.t -t/30.with_pid_file.t -t/31.with_pid_file_and_poe.t -t/pod-coverage.t -t/pod.t diff --git a/Makefile.PL b/Makefile.PL index be4c23d..b21a588 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -14,5 +14,6 @@ requires 'MooseX::Types::Path::Class' => 0; no_index 'directory' => 'examples'; -auto_install; +auto_manifest; +auto_repository; WriteAll; diff --git a/lib/MooseX/Daemonize.pm b/lib/MooseX/Daemonize.pm index 2755c53..875a05b 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.08; +our $VERSION = "0.09"; with 'MooseX::Daemonize::WithPidFile', 'MooseX::Getopt'; @@ -524,7 +524,7 @@ L, L =head1 AUTHORS -Chris Prather C<< >> +Chris Prather C<< > Stevan Little C<< >> @@ -537,7 +537,7 @@ Some bug fixes sponsored by Takkle Inc. =head1 LICENCE AND COPYRIGHT -Copyright (c) 2007-2008, Chris Prather C<< >>. All rights +Copyright (c) 2007-2009, Chris Prather C<< >>. Some rights reserved. This module is free software; you can redistribute it and/or diff --git a/lib/MooseX/Daemonize/Core.pm b/lib/MooseX/Daemonize/Core.pm index 6c3e07a..d378612 100644 --- a/lib/MooseX/Daemonize/Core.pm +++ b/lib/MooseX/Daemonize/Core.pm @@ -3,7 +3,7 @@ use strict; # cause Perl::Critic errors are annoying use MooseX::Getopt; # to load the NoGetopt metaclass use Moose::Role; -our $VERSION = 0.01; +our $VERSION = '0.09'; use POSIX (); diff --git a/lib/MooseX/Daemonize/Pid.pm b/lib/MooseX/Daemonize/Pid.pm index 3426985..1f070df 100644 --- a/lib/MooseX/Daemonize/Pid.pm +++ b/lib/MooseX/Daemonize/Pid.pm @@ -2,12 +2,12 @@ package MooseX::Daemonize::Pid; use strict; # because Kwalitee is pedantic use Moose; use Moose::Util::TypeConstraints; +our $VERSION = '0.09'; coerce 'MooseX::Daemonize::Pid' => from 'Int' => via { MooseX::Daemonize::Pid->new( pid => $_ ) }; -our $VERSION = '0.01'; has 'pid' => ( is => 'rw', diff --git a/lib/MooseX/Daemonize/Pid/File.pm b/lib/MooseX/Daemonize/Pid/File.pm index ca2107f..a0a4047 100644 --- a/lib/MooseX/Daemonize/Pid/File.pm +++ b/lib/MooseX/Daemonize/Pid/File.pm @@ -3,7 +3,7 @@ use strict; # because Kwalitee is pedantic use Moose; use Moose::Util::TypeConstraints; -our $VERSION = '0.01'; +our $VERSION = '0.09'; use MooseX::Types::Path::Class; use MooseX::Getopt::OptionTypeMap; diff --git a/lib/MooseX/Daemonize/WithPidFile.pm b/lib/MooseX/Daemonize/WithPidFile.pm index 0df7738..33aa69e 100644 --- a/lib/MooseX/Daemonize/WithPidFile.pm +++ b/lib/MooseX/Daemonize/WithPidFile.pm @@ -2,10 +2,10 @@ package MooseX::Daemonize::WithPidFile; use strict; # cause Perl::Critic errors are annoying use MooseX::Getopt; # to load the Getopt metaclass use Moose::Role; +our $VERSION = '0.09'; -use MooseX::Daemonize::Pid::File; -our $VERSION = 0.01; +use MooseX::Daemonize::Pid::File; with 'MooseX::Daemonize::Core'; diff --git a/lib/Test/MooseX/Daemonize.pm b/lib/Test/MooseX/Daemonize.pm index 1f7239f..2841cd7 100644 --- a/lib/Test/MooseX/Daemonize.pm +++ b/lib/Test/MooseX/Daemonize.pm @@ -1,12 +1,13 @@ package Test::MooseX::Daemonize; use strict; +our $VERSION = '0.09'; +our $AUTHORITY = 'cpan:PERIGRIN'; + # BEGIN CARGO CULTING use Sub::Exporter; use Test::Builder; -our $VERSION = '0.03'; -our $AUTHORITY = 'cpan:PERIGRIN'; { my @exports = qw[