On Thu Aug 29 07:46:37 2013, ANDK wrote:
Show quoted text
Similar problem here, not sure why I haven't seen this before now:
[355][c.wright@chisel-7of9:Module-Pluggable-Singleton-0.04][7of9⚡]➔ grep -rh '^use ' lib/ t/ |sort |uniq
use Carp;
use Carp qw/croak confess/;
use Data::Dump q/pp/;
use Data::Dump qw/pp/;
use FindBin::libs;
use Module::Pluggable::Singleton;
use Module::Pluggable::Singleton::Object;
use Moose;
use parent 'Module::Pluggable::Object';
use strict;
use Test::More;
use Test::More tests => 1;
use Test::More tests => 3;
use warnings;
use XT::Business;
[356][c.wright@chisel-7of9:Module-Pluggable-Singleton-0.04][7of9⚡]➔ more Makefile.PL
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Module::Pluggable::Singleton',
AUTHOR => q{Jason Tang <tang.jason.ch@gmail.com>},
VERSION_FROM => 'lib/Module/Pluggable/Singleton.pm',
ABSTRACT_FROM => 'lib/Module/Pluggable/Singleton.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Module-Pluggable-Singleton-*' },
);
[357][c.wright@chisel-7of9:Module-Pluggable-Singleton-0.04][7of9⚡]➔