File Coverage

blib/lib/Catalyst/Devel.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Catalyst::Devel;
2             require 5.008003;
3              
4 6     6   23914 use strict;
  6         24  
  6         157  
5 6     6   29 use warnings;
  6         10  
  6         366  
6              
7             # Change Catalyst::Helper also.
8             our $VERSION = '1.41';
9             our $CATALYST_SCRIPT_GEN = 40;
10              
11             $VERSION = eval $VERSION;
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;