[Catalyst-commits] r9217 - Catalyst-Devel/1.00/trunk/lib/Catalyst
rjbs at dev.catalyst.perl.org
rjbs at dev.catalyst.perl.org
Thu Feb 5 20:03:17 GMT 2009
Author: rjbs
Date: 2009-02-05 20:03:17 +0000 (Thu, 05 Feb 2009)
New Revision: 9217
Modified:
Catalyst-Devel/1.00/trunk/lib/Catalyst/Devel.pm
Catalyst-Devel/1.00/trunk/lib/Catalyst/Helper.pm
Log:
fix use of dist/package
fix bug that could cause create scripts to fail
Modified: Catalyst-Devel/1.00/trunk/lib/Catalyst/Devel.pm
===================================================================
--- Catalyst-Devel/1.00/trunk/lib/Catalyst/Devel.pm 2009-02-05 19:56:51 UTC (rev 9216)
+++ Catalyst-Devel/1.00/trunk/lib/Catalyst/Devel.pm 2009-02-05 20:03:17 UTC (rev 9217)
@@ -12,12 +12,12 @@
=head1 DESCRIPTION
-The C<Catalyst::Devel> package includes a variety of modules useful for the
-development of Catalyst applications, but not required to run them. This
-is intended to make it easier to deploy Catalyst apps. The runtime parts of
-Catalyst are now known as C<Catalyst::Runtime>.
+The C<Catalyst-Devel> distribution includes a variety of modules useful
+for the development of Catalyst applications, but not required to run
+them. This is intended to make it easier to deploy Catalyst apps. The
+runtime parts of Catalyst are now known as C<Catalyst::Runtime>.
-C<Catalyst::Devel> includes the L<Catalyst::Helper> system, which
+C<Catalyst-Devel> includes the L<Catalyst::Helper> system, which
autogenerates scripts and tests; L<Module::Install::Catalyst>, a
L<Module::Install> extension for Catalyst; and requirements for a
variety of development-related modules. The documentation remains with
Modified: Catalyst-Devel/1.00/trunk/lib/Catalyst/Helper.pm
===================================================================
--- Catalyst-Devel/1.00/trunk/lib/Catalyst/Helper.pm 2009-02-05 19:56:51 UTC (rev 9216)
+++ Catalyst-Devel/1.00/trunk/lib/Catalyst/Helper.pm 2009-02-05 20:03:17 UTC (rev 9217)
@@ -1086,7 +1086,7 @@
use warnings;
use Getopt::Long;
use Pod::Usage;
-eval "use Catalyst::Devel;";
+eval "use Catalyst::Helper;";
if ($@) {
die <<END;
More information about the Catalyst-commits
mailing list