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