+++ /dev/null
-# Dear Distribution Packager. This use of require is intentional.
-# Module::Install detects Build.PL usage and acts accordingly.
-require 'Makefile.PL';
Revision history for MooseX-Daemonize
+0.07 Saturday, May 24, 2008
* MooseX::Daemonize
- - Made default pidbase '/var/run' rather than './var/run'
- - Small fixups to pidfile testing in t/31.with_pid_file_and_poe.t
+ - Made default pidbase '/var/run' rather
+ than './var/run'
+
+ * t/
+ - Small fixups to pidfile testing in
+ t/31.with_pid_file_and_poe.t
+
+ ~ Removed the Build.PL since Module::Install
+ has removed their support
0.06 Fri. Dec. 21, 2007
* MooseX::Daemonize
-MooseX-Daemonize version 0.06
+MooseX-Daemonize version 0.07
INSTALLATION
make test
make install
-
-Alternatively, to install with Module::Build, you can use the following commands:
-
- perl Build.PL
- ./Build
- ./Build test
- ./Build install
-
DEPENDENCIES
Moose
COPYRIGHT AND LICENCE
-Copyright (C) 2007, Chris Prather
+Copyright (C) 2007-2008, Chris Prather
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
use Moose::Role;
use MooseX::Types::Path::Class;
-our $VERSION = 0.06;
+our $VERSION = 0.07;
with 'MooseX::Daemonize::WithPidFile',
'MooseX::Getopt';
-use constant OK => 0;
-use constant ERROR => 1;
+sub OK () { 0 }
+sub ERROR () { 1 }
has progname => (
metaclass => 'Getopt',
=head1 LICENCE AND COPYRIGHT
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights
reserved.
This module is free software; you can redistribute it and/or
=head1 LICENCE AND COPYRIGHT
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights
reserved.
Portions heavily borrowed from L<Proc::Daemon> which is copyright Earl Hood.
=head1 LICENCE AND COPYRIGHT
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights
reserved.
This module is free software; you can redistribute it and/or
=head1 LICENCE AND COPYRIGHT
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights
reserved.
This module is free software; you can redistribute it and/or
=head1 LICENCE AND COPYRIGHT
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights
reserved.
Portions heavily borrowed from L<Proc::Daemon> which is copyright Earl Hood.
=head1 LICENCE AND COPYRIGHT
-Copyright (c) 2007, Chris Prather C<< <perigrin@cpan.org> >>. All rights reserved.
+Copyright (c) 2007-2008, Chris Prather C<< <perigrin@cpan.org> >>. All rights reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See L<perlartistic>.