clean stuff up for a 0.09 release
Chris Prather [Mon, 5 Oct 2009 19:21:40 +0000 (15:21 -0400)]
Changes
MANIFEST [deleted file]
Makefile.PL
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

diff --git a/Changes b/Changes
index 5a13539..c36a8d7 100644 (file)
--- 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 (file)
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
index be4c23d..b21a588 100644 (file)
@@ -14,5 +14,6 @@ requires 'MooseX::Types::Path::Class' => 0;
 
 no_index 'directory' => 'examples';
 
-auto_install;
+auto_manifest;
+auto_repository;
 WriteAll;
index 2755c53..875a05b 100644 (file)
@@ -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<Proc::Daemon>, L<Daemon::Generic>
 
 =head1 AUTHORS
 
-Chris Prather  C<< <perigrin@cpan.org> >>
+Chris Prather  C<< <chris@prather.org >>
 
 Stevan Little  C<< <stevan.little@iinteractive.com> >>
 
@@ -537,7 +537,7 @@ Some bug fixes sponsored by Takkle Inc.
 
 =head1 LICENCE AND COPYRIGHT
 
-Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights
+Copyright (c) 2007-2009, Chris Prather C<< <chris@prather.org> >>. Some rights
 reserved.
 
 This module is free software; you can redistribute it and/or
index 6c3e07a..d378612 100644 (file)
@@ -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 ();
 
index 3426985..1f070df 100644 (file)
@@ -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',
index ca2107f..a0a4047 100644 (file)
@@ -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;
index 0df7738..33aa69e 100644 (file)
@@ -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';
 
index 1f7239f..2841cd7 100644 (file)
@@ -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[