From: Brian Cassidy Date: Tue, 3 Apr 2007 16:14:31 +0000 (+0000) Subject: adding Makefile.PL X-Git-Tag: v0.14~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-ConfigLoader.git;a=commitdiff_plain;h=d7948757a8d13b67a438a743b69330f54f043fb3 adding Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..3aee640 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,13 @@ +use inc::Module::Install; + +name 'Catalyst-Plugin-ConfigLoader'; +all_from 'lib/Catalyst/Plugin/ConfigLoader.pm'; + +requires 'Catalyst'; +requires 'Data::Visitor' => '0.02'; +requires 'Config::Any' => '0.04'; + +requires 'Test::More'; + +auto_install; +WriteAll;