use strict;
use 5.010000;
my %WriteMakefileArgs = (
"ABSTRACT" => "Plugins to integrate Dist::Zilla with GitHub",
"AUTHOR" => "Alessandro Ghedini <alexbio\@cpan.org>",
"BUILD_REQUIRES" => {
"File::Find" => 0,
"File::Temp" => 0,
"Test::More" => 0
},
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30"
},
"DISTNAME" => "Dist-Zilla-Plugin-GitHub",
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "Dist::Zilla::Plugin::GitHub",
"PREREQ_PM" => {
"Class::Load" => 0,
"Dist::Zilla::App" => 0,
"Dist::Zilla::Dist::Minter" => 0,
"Dist::Zilla::Role::AfterMint" => 0,
"Dist::Zilla::Role::MetaProvider" => 0,
"Dist::Zilla::Role::PluginBundle::Easy" => 0,
"Dist::Zilla::Role::Releaser" => 0,
"File::Basename" => 0,
"HTTP::Tiny" => 0,
"IO::Socket::SSL" => 0,
"JSON" => 0,
"MIME::Base64" => 0,
"Moose" => 0,
"Term::ReadKey" => 0,
"Try::Tiny" => 0,
"strict" => 0,
"warnings" => 0
},
"VERSION" => "0.22",
"test" => {
"TESTS" => "t/*.t"
}
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {
my $br = delete $WriteMakefileArgs{BUILD_REQUIRES};
my $pp = $WriteMakefileArgs{PREREQ_PM};
for my $mod ( keys %$br ) {
if ( exists $pp->{$mod} ) {
$pp->{$mod} = $br->{$mod} if $br->{$mod} > $pp->{$mod};
}
else {
$pp->{$mod} = $br->{$mod};
}
}
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(%WriteMakefileArgs);