got tall the stuff
Stevan Little [Sat, 22 Dec 2007 02:28:21 +0000 (02:28 +0000)]
Changes
MANIFEST
Makefile.PL
README
lib/MooseX/Daemonize.pm

diff --git a/Changes b/Changes
index a64b62b..ed9f4ae 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,6 @@
 Revision history for MooseX-Daemonize
 
-0.05
+0.06 Fri. Dec. 21, 2007
     * MooseX::Daemonize
       - Fix logic that kills process so it doens't always warn 
         about undead process
@@ -36,6 +36,11 @@ Revision history for MooseX-Daemonize
         of MooseX::Daemonize::Pid (stevan)
         - added tests for this (stevan)
 
+0.05 2007-11-18
+    - Fix logic that kills process so it doens't always warn 
+      about undead process
+    - Added stop_timeout to allow user to control timings.
+
 0.04 2007-11-11
     - Fix stupid perlcritic.t cause the Module::Starter::PBP tests were 
       stupid but I didn't realize it.
index 908849e..0326e58 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,8 +1,6 @@
 .cvsignore
 Build.PL
 Changes
-examples/moose_room.pl
-IDEAS
 inc/Module/AutoInstall.pm
 inc/Module/Install.pm
 inc/Module/Install/AutoInstall.pm
@@ -15,8 +13,11 @@ inc/Module/Install/Makefile.pm
 inc/Module/Install/Metadata.pm
 inc/Module/Install/Win32.pm
 inc/Module/Install/WriteAll.pm
-lab/dec.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
 Makefile.PL
 MANIFEST                       This list of files
@@ -25,7 +26,8 @@ README
 t/00.load.t
 t/01.filecreate.t
 t/02.stdout.t
-t/kwalitee.t
-t/perlcritic.t
+t/10.pidfile.t
+t/20.core.t
+t/30.with_pid_file.t
 t/pod-coverage.t
 t/pod.t
index 6c05759..fbce5c1 100644 (file)
@@ -8,7 +8,7 @@ all_from 'lib/MooseX/Daemonize.pm';
 # Specific dependencies
 build_requires 'Test::More'  => 0;
 
-requires 'Moose'                      => 0.20;
+requires 'Moose'                      => 0.33;
 requires 'MooseX::Getopt'             => 0.07;
 requires 'MooseX::Types::Path::Class' => 0;
 
diff --git a/README b/README
index 1257538..c994046 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-MooseX-Daemonize version 0.0.5
+MooseX-Daemonize version 0.06
 
 INSTALLATION
 
index ed7dc5c..4329d5d 100644 (file)
@@ -3,7 +3,7 @@ use strict;    # because Kwalitee is pedantic
 use Moose::Role;
 use MooseX::Types::Path::Class;
 
-our $VERSION = 0.05;
+our $VERSION = 0.06;
 
 with 'MooseX::Daemonize::WithPidFile',
      'MooseX::Getopt';