Version 1.39
[catagits/Catalyst-Devel.git] / lib / Catalyst / Devel.pm
1 package Catalyst::Devel;
2
3 use strict;
4 use warnings;
5
6 # Change Catalyst::Helper also.
7 our $VERSION             = '1.39';
8 our $CATALYST_SCRIPT_GEN = 40;
9
10 $VERSION = eval $VERSION;
11
12 =head1 NAME
13
14 Catalyst::Devel - Catalyst Development Tools
15
16 =head1 DESCRIPTION
17
18 The C<Catalyst-Devel> distribution includes a variety of modules useful
19 for the development of Catalyst applications, but not required to run
20 them. This is intended to make it easier to deploy Catalyst apps. The
21 runtime parts of Catalyst are now known as C<Catalyst::Runtime>. 
22
23 C<Catalyst-Devel> includes the L<Catalyst::Helper> system, which
24 autogenerates scripts and tests; L<Module::Install::Catalyst>, a
25 L<Module::Install> extension for Catalyst; and requirements for a
26 variety of development-related modules. The documentation remains with
27 L<Catalyst::Runtime>.
28
29 =head1 SEE ALSO
30
31 L<Catalyst|Catalyst::Runtime>.
32
33 =head1 AUTHOR
34
35 Catalyst Contributors, see Catalyst.pm
36
37 =head1 PROJECT FOUNDER
38
39 sri: Sebastian Riedel <sri@cpan.org>
40
41 =head1 COPYRIGHT
42
43 Copyright (c) 2006 - 2009
44 the Catalyst::Devel L</AUTHOR>
45 as listed above.
46
47 =head1 LICENSE
48
49 This library is free software. You can redistribute it and/or modify
50 it under the same terms as Perl itself.
51
52 =cut
53
54 1;