From: Robin Edwards Date: Thu, 10 Dec 2009 16:49:31 +0000 (+0000) Subject: updated manifest and added some deps X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b93aa257bcab6fed369362eab8a6e9c204b9a7aa;p=p5sagit%2FDevel-Declare-Keyword.git updated manifest and added some deps --- diff --git a/MANIFEST b/MANIFEST index e0efd61..619b75f 100644 --- a/MANIFEST +++ b/MANIFEST @@ -3,8 +3,13 @@ Makefile.PL MANIFEST README lib/Keyword.pm -examples/DevelDeclareExample.pm -examples/KeywordMethod.pm +lib/Keyword/Parser.pm +lib/Keyword/Parse/Ident.pm +lib/Keyword/Parse/Block.pm +lib/Keyword/Parse/Proto.pm +examples/DDExample.pm +examples/Methods.pm t/00-use.t -t/01-develdeclareexample.t -t/02-keyword-method.t +t/01-dd-example.t +t/02-syntax.t +t/03-methods.t diff --git a/Makefile.PL b/Makefile.PL index c1cb069..11af5d1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,7 +5,10 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Keyword', VERSION_FROM => 'lib/Keyword.pm', # finds $VERSION - PREREQ_PM => {}, # e.g., Module::Name => 1.1 + PREREQ_PM => { + 'Devel::Declare'=>0, + 'B::Hooks::EndOfScope'=>0 + }, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/Keyword.pm', # retrieve abstract from module AUTHOR => 'Robin Edwards ') : ()),