Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added required modules to Makefile.PL.
  • Loading branch information
Nick Spacek committed Jul 8, 2009
1 parent 85d4e95 commit 08bcd27
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions Makefile.PL
@@ -1,11 +1,20 @@
use 5.010000;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

WriteMakefile(
NAME => 'Net::Google::Tasks',
VERSION_FROM => 'lib/Net/Google/Tasks.pm', # finds $VERSION
PREREQ_PM => {}, # e.g., Module::Name => 1.1
PREREQ_PM => {
Moose => 0,
LWP => 0,
LWP::UserAgent => 0,
HTTP::Request::Common => 0,
HTML::Form => 0,
HTML::Parser => 0,
JSON => 0,
URI::Escape => 0,
Data::Dumper => 0
},
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/Net/Google/Tasks.pm', # retrieve abstract from module
AUTHOR => 'Nick Spacek <nick.spacek@gmail.com>') : ()),
Expand Down

0 comments on commit 08bcd27

Please sign in to comment.