From: Arthur Axel 'fREW' Schmidt Date: Fri, 5 Mar 2010 04:27:54 +0000 (-0600) Subject: initial Makefile.PL X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Data-Store-old.git;a=commitdiff_plain;h=94de1f7bf034864f5ae6b763b29a6b12cbd093d7 initial Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..a71b079 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,11 @@ +use 5.006; +use inc::Module::Install 0.91; +use strict; +use warnings FATAL => 'all'; + +all_from 'lib/DBIx/Data/Store.pm'; +requires 'Moose'; +requires 'Method::Signatures::Simple'; +requires 'DBIx::Connector'; + +WriteAll;