+++ /dev/null
-# Load the Module::Install bundled in ./inc/
-use inc::Module::Install 0.75;
-
-# Define metadata
-name 'MooseX-Daemonize';
-all_from 'lib/MooseX/Daemonize.pm';
-
-# Specific dependencies
-build_requires 'Test::More' => 0;
-build_requires 'Test::Moose' => 0;
-
-requires 'Moose' => 0.33;
-requires 'MooseX::Getopt' => 0.07;
-requires 'MooseX::Types::Path::Class' => 0;
-requires 'File::Path' => 2.08;
-test_requires 'Test::More' => 0.88;
-test_requires 'Test::Fatal' => 0;
-
-no_index 'directory' => 'examples';
-
-auto_manifest;
-
-# r/w: gitmo@git.moose.perl.org:MooseX-Daemonize.git
-repository 'git://git.moose.perl.org/MooseX-Daemonize.git';
-
-WriteAll;
+++ /dev/null
-MooseX-Daemonize version 0.13
-
-INSTALLATION
-
-To install this module, run the following commands:
-
- perl Makefile.PL
- make
- make test
- make install
-
-DEPENDENCIES
-
- Moose
- MooseX::Getopt
- MooseX::Types::Path::Class
-
-COPYRIGHT AND LICENCE
-
-Copyright (C) 2007-2011, Chris Prather
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
--- /dev/null
+name = MooseX-Daemonize
+author = Chris Prather <chris@prather.org>
+copyright_holder = Chris Prather
+license = Perl_5
+version = 0.17
+
+[Authority]
+authority = cpan:PERIGRIN
+
+[Prereqs / RuntimeRequires]
+Moose = 0.33
+MooseX::Getopt = 0.07
+MooseX::Types::Path::Class = 0
+File::Path = 2.08
+
+[Prereqs / TestRequires]
+Test::More = 0.88
+Test::Fatal = 0
+Test::Moose = 0
+
+[MetaNoIndex]
+directory = t
+directory = examples
+
+[MetaResources]
+bugtracker.web = https://rt.cpan.org/Dist/Display.html?Name=MooseX-Daemonize
+bugtracker.mailto = bug-MooseX-Daemonize@rt.cpan.org
+; r/w: gitmo@git.moose.perl.org:MooseX-Daemonize.git
+repository.url = git://git.moose.perl.org/MooseX-Daemonize.git
+repository.web = http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo/MooseX-Daemonize.git;a=summary
+repository.type = git
+
+[PkgVersion]
+
+; this is last so ConfirmRelease loads last
+[@Basic]
+
use MooseX::Types::Path::Class;
use File::Path qw(make_path);
-our $VERSION = '0.16';
-
with 'MooseX::Daemonize::WithPidFile',
'MooseX::Getopt';
use MooseX::Getopt; # to load the NoGetopt metaclass
use Moose::Role;
-our $VERSION = '0.16';
-
use POSIX ();
has is_daemon => (
use strict; # because Kwalitee is pedantic
use Moose;
use Moose::Util::TypeConstraints;
-our $VERSION = '0.16';
coerce 'MooseX::Daemonize::Pid'
=> from 'Int'
use strict; # cause Perl::Critic errors are annoying
use MooseX::Getopt; # to load the Getopt metaclass
use Moose::Role;
-our $VERSION = '0.16';
use MooseX::Daemonize::Pid::File;
package Test::MooseX::Daemonize;
use strict;
-our $VERSION = '0.16';
our $AUTHORITY = 'cpan:PERIGRIN';
# BEGIN CARGO CULTING