From: Ash Berlin Date: Thu, 30 Apr 2009 16:04:09 +0000 (+0100) Subject: Fix Makefile.PL X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FSQL-Abstract-2.0-ish.git;a=commitdiff_plain;h=c8c2694a63b319a06e8d254fc797a5a5f407ad7c Fix Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL index af625b4..6a29649 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -7,12 +7,16 @@ name 'SQL-Abstract'; requires 'Moose' => '0.71'; requires 'MooseX::Method::Signatures' => '0.13_804d1448'; requires 'MooseX::Declare' => '0.09'; -requires 'MooseX::Types::Structured' => '0.9'; -requires 'Devel::PartialDump' => '0.9'; +requires 'MooseX::Types::Structured' => '0.09'; +requires 'Devel::PartialDump' => '0.07'; test_requires 'Test::More'; test_requires 'Test::Differences'; test_requires 'Sub::Exporter'; auto_provides_class(); +auto_install; + +tests_recursive 't'; + WriteAll; diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index 26b3ce1..c855117 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -152,3 +152,21 @@ class SQL::Abstract { } }; + +__END__ + +=head1 NAME + +SQL::Abstract - AST based re-implementation of SQL::Abstract + +=head1 LICENSE + +=head1 AUTHORS + +Ash Berlin C<< >> + +=head1 LICENSE + +This program is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. +