X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=ef46276dba4bdc61b74eeed61f659dd64dfc8c75;hb=7da9cd47db7689a09f1b836692c2dd2fddabee84;hp=9f05f06f078a7ee2f79d93949ccc800c6c0329b1;hpb=227d4dee52a91339e04dd509712ac062450bbb82;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 9f05f06..ef46276 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -6,14 +6,14 @@ use warnings; use vars qw($VERSION); use base qw/DBIx::Class::Componentised/; -$VERSION = '0.02'; +$VERSION = '0.03002'; 1; =head1 NAME -DBIx::Class - Because the brain is a terrible thing to waste. +DBIx::Class - Extensible and flexible object <-> relational mapper. =head1 SYNOPSIS @@ -61,17 +61,31 @@ yo load the approriate PK::Auto subclass - e.g. interface) If you fancy playing around with DBIx::Class from scratch, then read the docs -for ::Table and ::Relationship, +for DBIx::Class::Table, ::Row, ::Schema, ::DB and ::Relationship, use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/Core DB/); and have a look at t/lib/DBICTest.pm for a brief example. -=head1 AUTHORS +=head1 AUTHOR Matt S. Trout +=head1 CONTRIBUTORS + +Andy Grundman + +Brian Cassidy + +Dan Kubb + +Dan Sully + +davekam + +Marcus Ramberg + =head1 LICENSE You may distribute this code under the same terms as Perl itself.