Skip to content

Commit

Permalink
Update dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
cho45 committed Dec 3, 2010
1 parent 002c950 commit 820bc68
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion Makefile.PL
@@ -1,3 +1,20 @@
BEGIN {
my @mip = qw(
Module::Install::AuthorTests
Module::Install::Repository
Module::Install::ReadmeFromPod
Module::Install::TestBase
);
for (@mip) {
eval "require $_";
if ($@) {
warn $@;
printf("# Install following (perl Makefile.PL | cpanm):\n%s", join("\n", @mip));
exit 1;
}
}
};

use inc::Module::Install;
name 'Text-Xatena';
all_from 'lib/Text/Xatena.pm';
Expand All @@ -9,9 +26,11 @@ requires 'HTML::Entities';
requires 'LWP::Simple';
requires 'UNIVERSAL::require';
requires 'List::MoreUtils';
requires 'Encode';

test_requires 'Encode';
test_requires 'LWP::UserAgent';
test_requires 'Test::More';
test_requires 'Test::Base';
test_requires 'Test::Most';
test_requires 'HTML::Parser';
test_requires 'Cache::MemoryCache';
Expand Down

0 comments on commit 820bc68

Please sign in to comment.