Fixed task
[catagits/Task-Catalyst.git] / Catalyst.pm
CommitLineData
f930a8cf 1package Task::Catalyst;
2
3use strict;
4
427b69a7 5our $VERSION = '1.00';
f930a8cf 6
7=head1 NAME
8
9Task::Catalyst - All you need to start with Catalyst
10
11=head1 SYNOPSIS
12
13C<perl -MCPAN -e 'install Task::Catalyst'>
14
15=head1 DESCRIPTION
16
17Installs everything you need to write serious Catalyst applications.
18
19L<Catalyst>
20
21L<Catalyst::Plugin::FormValidator>
22
23L<Catalyst::Plugin::FormValidator::Simple>
24
25L<Catalyst::Plugin::FillInForm>
26
27L<Catalyst::Plugin::Prototype>
28
29L<Catalyst::Plugin::Singleton>
30
31L<Catalyst::Plugin::DefaultEnd>
32
33L<Catalyst::Plugin::SubRequest>
34
35L<Catalyst::Plugin::Session>
36
37L<Catalyst::Plugin::Session::Store::File>
38
39L<Catalyst::Plugin::Session::State::Cookie>
40
41L<Catalyst::Plugin::Session::State::URI>
42
43L<Catalyst::Model::DBIC::Plain>
44
45L<Catalyst::Model::DBIC>
46
47L<Catalyst::View::TT>
48
49L<Test::WWW::Mechanize::Catalyst>
50
51L<DBD::SQLite>
52
53L<YAML>
54
55=head1 AUTHOR
56
57Sebastian Riedel, C<sri@oook.de>
58
59=head1 LICENSE
60
61This library is free software, you can redistribute it and/or modify it under
62the same terms as Perl itself.
63
64=cut
65
661;