cleanup Task::Catalyst
[catagits/Task-Catalyst.git] / lib / Task / Catalyst.pm
1 package Task::Catalyst;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '2.0000';
7
8 =head1 NAME
9
10 Task::Catalyst - All you need to start with Catalyst
11
12 =head1 SYNOPSIS
13
14 C<perl -MCPAN -e 'install Task::Catalyst'>
15
16 =head1 DESCRIPTION
17
18 Installs everything you need to write serious Catalyst applications.
19
20 L<Catalyst>
21
22 L<Catalyst::Devel>
23
24 L<Catalyst::Engine::Apache>
25
26 L<FCGI>
27
28 L<FCGI::ProcManager>
29
30 L<PAR>
31
32 L<Catalyst::Log::Log4perl>
33
34 L<Catalyst::Plugin::HTML::Widget>
35
36 L<Catalyst::Controller::FormBuilder>
37
38 L<Catalyst::Plugin::StackTrace>
39
40 L<Catalyst::Plugin::Prototype>
41
42 L<Catalyst::Plugin::Session>
43
44 L<Catalyst::Plugin::Session::Store::File>
45
46 L<Catalyst::Plugin::Session::State::Cookie>
47
48 L<Catalyst::Plugin::Session::State::URI>
49
50 L<Catalyst::Plugin::Authentication>
51
52 L<Catalyst::Plugin::Authentication::Store::DBIC>
53
54 L<Catalyst::Plugin::Authentication::Store::Htpasswd>
55
56 L<Catalyst::Plugin::Authorization::ACL>
57
58 L<Catalyst::Plugin::Authorization::Roles>
59
60 L<Catalyst::Plugin::I18N>
61
62 L<Catalyst::Controller::BindLex>
63
64 L<Catalyst::Model::DBIC::Schema>
65
66 L<Catalyst::View::TT>
67
68 L<Test::WWW::Mechanize::Catalyst>
69
70 L<DBD::SQLite>
71
72 =head1 AUTHOR
73
74 The Catalyst Core Team - see http://catalyst.perl.org/
75
76 =head1 LICENSE
77
78 This library is free software, you can redistribute it and/or modify it under
79 the same terms as Perl itself.
80
81 =cut
82
83 1;