Dist-Zilla-Role-PluginLoader
view release on metacpan or search on metacpan
"CPAN::Meta" : "2.120900",
"ExtUtils::MakeMaker" : "7.00",
"Test::More" : "0.99"
},
"requires" : {
"Dist::Zilla::Role::Plugin" : "0",
"Dist::Zilla::Util::ConfigDumper" : "0",
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"Test::DZil" : "0",
"Test::Differences" : "0",
"Test::More" : "0",
"perl" : "5.010"
}
}
},
"provides" : {
"Dist::Zilla::Role::PluginLoader" : {
"file" : "lib/Dist/Zilla/Role/PluginLoader.pm",
"version" : "0.001003"
},
---
abstract: 'A Plugin that can load others.'
author:
- 'Kent Fredric <kentnl@cpan.org>'
build_requires:
Dist::Zilla::Role::Plugin: '0'
Dist::Zilla::Util::ConfigDumper: '0'
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Test::DZil: '0'
Test::Differences: '0'
Test::More: '0'
perl: '5.010'
configure_requires:
ExtUtils::MakeMaker: '0'
perl: '5.010'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Makefile.PL view on Meta::CPAN
"Moose::Role" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"Dist::Zilla::Role::Plugin" => 0,
"Dist::Zilla::Util::ConfigDumper" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::DZil" => 0,
"Test::Differences" => 0,
"Test::More" => 0
},
"VERSION" => "0.001003",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t"
}
);
my %FallbackPrereqs = (
"Carp" => 0,
"Dist::Zilla::Role::Plugin" => 0,
"Dist::Zilla::Role::PrereqSource" => 0,
"Dist::Zilla::Util" => 0,
"Dist::Zilla::Util::ConfigDumper" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Moose" => 0,
"Moose::Role" => 0,
"Test::DZil" => 0,
"Test::Differences" => 0,
"Test::More" => 0,
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
misc/built_with.json view on Meta::CPAN
"English" : "1.10",
"ExtUtils::MakeMaker" : "7.24",
"File::Spec" : "3.66",
"Moose" : "2.2004",
"Moose::Role" : "2.2004",
"Pod::Coverage::TrustPod" : "0.100003",
"Software::License::Perl_5" : "0.103012",
"Test::CPAN::Changes" : "0.400002",
"Test::CPAN::Meta" : "0.25",
"Test::DZil" : "6.009",
"Test::Differences" : "0.64",
"Test::EOL" : "1.6",
"Test::Kwalitee" : "1.25",
"Test::MinimumVersion" : "0.101082",
"Test::More" : "1.302073",
"Test::Pod" : "1.51",
"Test::Pod::Coverage" : "1.10",
"strict" : "1.11",
"warnings" : "1.37"
},
"perl" : {
t/00-report-prereqs.dd view on Meta::CPAN
'CPAN::Meta' => '2.120900',
'ExtUtils::MakeMaker' => '7.00',
'Test::More' => '0.99'
},
'requires' => {
'Dist::Zilla::Role::Plugin' => '0',
'Dist::Zilla::Util::ConfigDumper' => '0',
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
'Test::DZil' => '0',
'Test::Differences' => '0',
'Test::More' => '0',
'perl' => '5.010'
}
}
};
$x;
}
t/loader-configurable.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 6;
use Test::DZil qw( simple_ini Builder );
use Dist::Zilla::Util::ConfigDumper qw( dump_plugin );
use Test::Differences;
# ABSTRACT: Test Role::PluginLoader directly
{
package #
Dist::Zilla::Plugin::Injected;
use Moose;
with 'Dist::Zilla::Role::Plugin';
use Dist::Zilla::Util::ConfigDumper qw( dump_plugin config_dumper );
has payload => ( is => ro => );
( run in 0.870 second using v1.01-cache-2.11-cpan-9581c071862 )