use
5.006;
$File::ShareDir::Install::INCLUDE_DOTFILES
= 1;
$File::ShareDir::Install::INCLUDE_DOTDIRS
= 1;
install_share
dist
=>
"share"
;
my
%WriteMakefileArgs
= (
"ABSTRACT"
=>
"Generates a CONTRIBUTING file for KENTNL's distributions."
,
"AUTHOR"
=>
"Kent Fredric <kentnl\@cpan.org>"
,
"CONFIGURE_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0,
"File::ShareDir::Install"
=>
"0.06"
},
"DISTNAME"
=>
"Dist-Zilla-Plugin-Author-KENTNL-CONTRIBUTING"
,
"EXE_FILES"
=> [],
"LICENSE"
=>
"perl"
,
"MIN_PERL_VERSION"
=>
"5.006"
,
"NAME"
=>
"Dist::Zilla::Plugin::Author::KENTNL::CONTRIBUTING"
,
"PREREQ_PM"
=> {
"Carp"
=> 0,
"Dist::Zilla::Plugin::GenerateFile::ShareDir"
=> 0,
"Dist::Zilla::Role::AfterBuild"
=> 0,
"Dist::Zilla::Role::FilePruner"
=> 0,
"Dist::Zilla::Util::ConfigDumper"
=> 0,
"Moose"
=> 0,
"Moose::Util::TypeConstraints"
=> 0,
"Path::Tiny"
=> 0,
"strict"
=> 0,
"warnings"
=> 0
},
"TEST_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0,
"File::Spec"
=> 0,
"Test::More"
=>
"0.89"
},
"VERSION"
=>
"0.001003"
,
"test"
=> {
"TESTS"
=>
"t/*.t t/00-compile/*.t"
}
);
my
%FallbackPrereqs
= (
"Carp"
=> 0,
"Dist::Zilla::Plugin::GenerateFile::ShareDir"
=> 0,
"Dist::Zilla::Role::AfterBuild"
=> 0,
"Dist::Zilla::Role::FilePruner"
=> 0,
"Dist::Zilla::Util::ConfigDumper"
=> 0,
"ExtUtils::MakeMaker"
=> 0,
"File::ShareDir::Install"
=>
"0.06"
,
"File::Spec"
=> 0,
"Moose"
=> 0,
"Moose::Util::TypeConstraints"
=> 0,
"Path::Tiny"
=> 0,
"Test::More"
=>
"0.89"
,
"strict"
=> 0,
"warnings"
=> 0
);
unless
(
eval
{ ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete
$WriteMakefileArgs
{TEST_REQUIRES};
delete
$WriteMakefileArgs
{BUILD_REQUIRES};
$WriteMakefileArgs
{PREREQ_PM} = \
%FallbackPrereqs
;
}
delete
$WriteMakefileArgs
{CONFIGURE_REQUIRES}
unless
eval
{ ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(
%WriteMakefileArgs
);
{
package
MY;
}