Amon2-Web-Dispatcher-RouterSimple-Extended
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
BEGIN {
unshift @INC, 'inc';
# author requires, or bundled modules
my @devmods = qw(
inc::Module::Install 1.00
Module::Install::AuthorTests 0.002
Module::Install::Repository 0.06
Test::Requires 0.06
);
my @not_available;
while(my($mod, $ver) = splice @devmods, 0, 2) {
eval qq{use $mod $ver (); 1} or push @not_available, $mod;
}
if(@not_available) {
print qq{# The following modules are not available.\n};
print qq{# `perl $0 | cpanm` will install them:\n};
print $_, "\n" for @not_available;
exit 1;
}
}
use inc::Module::Install;
all_from 'lib/Amon2/Web/Dispatcher/RouterSimple/Extended.pm';
author 'Taiyoh Tanaka <sun.basix@gmail.com>';
requires 'Amon2';
( run in 0.602 second using v1.01-cache-2.11-cpan-cc502c75498 )