use
5.006;
my
%WriteMakefileArgs
= (
"ABSTRACT"
=>
"Allow designating routes to respond only on hostname match"
,
"AUTHOR"
=>
"D Ruth Holloway <ruth\@hiruthie.me>"
,
"CONFIGURE_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0
},
"DISTNAME"
=>
"Dancer2-Plugin-HostSpecificRoute"
,
"LICENSE"
=>
"perl"
,
"MIN_PERL_VERSION"
=>
"5.006"
,
"NAME"
=>
"Dancer2::Plugin::HostSpecificRoute"
,
"PREREQ_PM"
=> {
"Dancer2::Plugin"
=> 0,
"strict"
=> 0,
"warnings"
=> 0
},
"TEST_REQUIRES"
=> {
"Dancer2"
=> 0,
"ExtUtils::MakeMaker"
=> 0,
"File::Spec"
=> 0,
"IO::Handle"
=> 0,
"IPC::Open3"
=> 0,
"Test2::Plugin::NoWarnings"
=> 0,
"Test2::Plugin::Times"
=> 0,
"Test2::V0"
=> 0,
"Test::More"
=> 0,
"Test::WWW::Mechanize::PSGI"
=> 0,
"lib"
=> 0
},
"VERSION"
=>
"1.0000"
,
"test"
=> {
"TESTS"
=>
"t/*.t"
}
);
my
%FallbackPrereqs
= (
"Dancer2"
=> 0,
"Dancer2::Plugin"
=> 0,
"ExtUtils::MakeMaker"
=> 0,
"File::Spec"
=> 0,
"IO::Handle"
=> 0,
"IPC::Open3"
=> 0,
"Test2::Plugin::NoWarnings"
=> 0,
"Test2::Plugin::Times"
=> 0,
"Test2::V0"
=> 0,
"Test::More"
=> 0,
"Test::WWW::Mechanize::PSGI"
=> 0,
"lib"
=> 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
;
}
delete
$WriteMakefileArgs
{CONFIGURE_REQUIRES}
unless
eval
{ ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(
%WriteMakefileArgs
);