my
%WriteMakefileArgs
= (
"ABSTRACT"
=>
"start/stop minion workers with the Mojolicious server"
,
"AUTHOR"
=>
"simone cesano <scesano\@cpan.org>"
,
"CONFIGURE_REQUIRES"
=> {
"ExtUtils::MakeMaker"
=> 0
},
"DISTNAME"
=>
"Mojolicious-Plugin-Minion-Starter"
,
"LICENSE"
=>
"perl"
,
"NAME"
=>
"Mojolicious::Plugin::Minion::Starter"
,
"PREREQ_PM"
=> {
"Class::Method::Modifiers"
=> 0,
"Minion"
=> 0,
"Mojo::Base"
=> 0
},
"TEST_REQUIRES"
=> {
"Minion::Backend::SQLite"
=> 0,
"Mojolicious::Lite"
=> 0,
"Test::Deep"
=> 0,
"Test::Mojo"
=> 0,
"Test::More"
=> 0,
"strict"
=> 0
},
"VERSION"
=>
"0.004"
,
"test"
=> {
"TESTS"
=>
"t/*.t"
}
);
my
%FallbackPrereqs
= (
"Class::Method::Modifiers"
=> 0,
"Minion"
=> 0,
"Minion::Backend::SQLite"
=> 0,
"Mojo::Base"
=> 0,
"Mojolicious::Lite"
=> 0,
"Test::Deep"
=> 0,
"Test::Mojo"
=> 0,
"Test::More"
=> 0,
"strict"
=> 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
);