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