From: David Kamholz Date: Thu, 16 Mar 2006 05:04:49 +0000 (+0000) Subject: doc clarifications to ResultSetManager X-Git-Tag: v0.06000~60^2~10 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b87f6889431c6a4b81a5cffbe7e2d6cd31c6f040;p=dbsrgits%2FDBIx-Class.git doc clarifications to ResultSetManager --- diff --git a/lib/DBIx/Class/ResultSetManager.pm b/lib/DBIx/Class/ResultSetManager.pm index c2af0f2..360f070 100644 --- a/lib/DBIx/Class/ResultSetManager.pm +++ b/lib/DBIx/Class/ResultSetManager.pm @@ -72,7 +72,7 @@ __END__ =head1 SYNOPSIS # in a table class - __PACKAGE__->load_components(qw/ResultSetManager/); + __PACKAGE__->load_components(qw/ResultSetManager Core/); # note order! __PACKAGE__->load_resultset_components(qw/AlwaysRS/); # will be removed from the table class and inserted into a table-specific resultset class @@ -84,7 +84,8 @@ This package implements two useful features for customizing resultset classes. C loads components in addition to C (or whatever you set as C). Any methods tagged with the C attribute will be moved into a table-specific resultset class (by default called -C). +C, but configurable via C). +Most of the magic is done when you call C<< __PACKAGE__->table >>. =head1 AUTHORS