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