Skip to content

Commit

Permalink
Move SQL::Abstract::Pg into a separate distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Feb 20, 2021
1 parent 5eb09dd commit 2bf08e0
Showing 6 changed files with 4 additions and 504 deletions.
3 changes: 2 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

4.25 2021-02-06
4.25 2021-02-20
- Moved SQL::Abstract::Pg into a separate distribution.

4.24 2021-01-27
- Fixed Mojolicious 8.72 support.
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
@@ -29,6 +29,6 @@ WriteMakefile(
x_IRC => {url => 'irc://chat.freenode.net/#mojo', web => 'https://webchat.freenode.net/#mojo'}
},
},
PREREQ_PM => {'DBD::Pg' => 3.007004, Mojolicious => '8.50', 'SQL::Abstract' => '1.86'},
PREREQ_PM => {'DBD::Pg' => 3.007004, Mojolicious => '8.50', 'SQL::Abstract::Pg' => '1.0'},
test => {TESTS => 't/*.t t/*/*.t'}
);
2 changes: 0 additions & 2 deletions lib/Mojo/Pg.pm
Original file line number Diff line number Diff line change
@@ -494,8 +494,6 @@ This is the class hierarchy of the L<Mojo::Pg> distribution.
=item * L<Mojo::Pg::Transaction>
=item * L<SQL::Abstract::Pg>
=back
=head1 AUTHOR
340 changes: 0 additions & 340 deletions lib/SQL/Abstract/Pg.pm

This file was deleted.

6 changes: 1 addition & 5 deletions t/pod_coverage.t
Original file line number Diff line number Diff line change
@@ -5,8 +5,4 @@ use Test::More;
plan skip_all => 'set TEST_POD to enable this test (developer only!)' unless $ENV{TEST_POD};
plan skip_all => 'Test::Pod::Coverage 1.04+ required for this test!' unless eval 'use Test::Pod::Coverage 1.04; 1';

my $private = ['insert', 'new', 'puke', 'select'];
my %RULES = ('SQL::Abstract::Pg' => {also_private => $private},);
pod_coverage_ok($_, $RULES{$_} || {}) for all_modules();

done_testing();
all_pod_coverage_ok();
Loading

0 comments on commit 2bf08e0

Please sign in to comment.