Changes to use Class::Accessor::Fast
[catagits/Catalyst-Authentication-Store-DBIx-Class.git] / lib / Catalyst / Plugin / Authentication / Store / DBIx / Class.pod
CommitLineData
5000f545 1package Catalyst::Plugin::Authentication::Store::DBIx::Class;
2
3use warnings;
4use strict;
5
6=head1 NAME
7
8Catalyst::Plugin::Authentication::Store::DBIx::Class - The great new Catalyst::Plugin::Authentication::Store::DBIx::Class!
9
10=head1 VERSION
11
12Version 0.01
13
14=cut
15
16our $VERSION = '0.01';
17
18=head1 SYNOPSIS
19
20Quick summary of what the module does.
21
22Perhaps a little code snippet.
23
24 use Catalyst::Plugin::Authentication::Store::DBIx::Class;
25
26 my $foo = Catalyst::Plugin::Authentication::Store::DBIx::Class->new();
27 ...
28
29=head1 EXPORT
30
31A list of functions that can be exported. You can delete this section
32if you don't export anything, such as for a purely object-oriented module.
33
34=head1 FUNCTIONS
35
36=head2 function1
37
38=cut
39
40sub function1 {
41}
42
43=head2 function2
44
45=cut
46
47sub function2 {
48}
49
50=head1 AUTHOR
51
52Jay Kuri, C<< <bsdmac at gmail.com> >>
53
54=head1 BUGS
55
56Please report any bugs or feature requests to
57C<bug-catalyst-plugin-authentication-store-dbix-class at rt.cpan.org>, or through the web interface at
58L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Plugin-Authentication-Store-DBIx-Class>.
59I will be notified, and then you'll automatically be notified of progress on
60your bug as I make changes.
61
62=head1 SUPPORT
63
64You can find documentation for this module with the perldoc command.
65
66 perldoc Catalyst::Plugin::Authentication::Store::DBIx::Class
67
68You can also look for information at:
69
70=over 4
71
72=item * AnnoCPAN: Annotated CPAN documentation
73
74L<http://annocpan.org/dist/Catalyst-Plugin-Authentication-Store-DBIx-Class>
75
76=item * CPAN Ratings
77
78L<http://cpanratings.perl.org/d/Catalyst-Plugin-Authentication-Store-DBIx-Class>
79
80=item * RT: CPAN's request tracker
81
82L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Plugin-Authentication-Store-DBIx-Class>
83
84=item * Search CPAN
85
86L<http://search.cpan.org/dist/Catalyst-Plugin-Authentication-Store-DBIx-Class>
87
88=back
89
90=head1 ACKNOWLEDGEMENTS
91
92=head1 COPYRIGHT & LICENSE
93
94Copyright 2006 Jay Kuri, all rights reserved.
95
96This program is free software; you can redistribute it and/or modify it
97under the same terms as Perl itself.
98
99=cut
100
1011; # End of Catalyst::Plugin::Authentication::Store::DBIx::Class