X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=d473c2d55f5045b5519001fd5ce807ee956c1160;hb=b28cc0ba2d1d443728c9cb48d97e5a2cdccf8cb4;hp=43ce5389bb96f5421a9adfbf9ace9625c8d673bf;hpb=ea2e61bf5bb7187dc5e56513cd66c272d71d5074;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 43ce538..d473c2d 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -1,5 +1,36 @@ package DBIx::Class; +use strict; +use warnings; + use base qw/DBIx::Class::CDBICompat DBIx::Class::Core/; +use vars qw($VERSION); + +$VERSION = '0.01'; + 1; + +=head1 NAME + +DBIx::Class - Because the brain is a terrible thing to waste. + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +This is a sql to oop mapper, inspired by the L framework, +and meant to support compability with it, while restructuring the +insides, and making it possible to support some new features like +self-joins, distinct, group bys and more. + +=head1 AUTHORS + +Matt S. Trout + +=head1 LICENSE + +You may distribute this code under the same terms as Perl itself. + +=cut +