[Catalyst-commits] r10105 -
Catalyst-Manual/5.70/branches/depluralise/lib/Catalyst/Manual/Tutorial
kiffin at dev.catalyst.perl.org
kiffin at dev.catalyst.perl.org
Wed May 13 09:25:36 GMT 2009
Author: kiffin
Date: 2009-05-13 09:25:36 +0000 (Wed, 13 May 2009)
New Revision: 10105
Modified:
Catalyst-Manual/5.70/branches/depluralise/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod
Log:
Should be StackTrace plugin that's it.
Modified: Catalyst-Manual/5.70/branches/depluralise/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod
===================================================================
--- Catalyst-Manual/5.70/branches/depluralise/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod 2009-05-13 09:00:20 UTC (rev 10104)
+++ Catalyst-Manual/5.70/branches/depluralise/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod 2009-05-13 09:25:36 UTC (rev 10105)
@@ -190,23 +190,12 @@
# Load plugins
use Catalyst qw/-Debug
- ConfigLoader
- Static::Simple
+ ConfigLoader
+ Static::Simple
- StackTrace
- /;
+ StackTrace
+ /;
-Make sure that when adding new plugins that you include them as a new
-dependancies within the Makefile.PL file. For example, after adding
-the StackTrace plugin the Makefile.PL should include the following
-lines:
-
- requires 'Catalyst::Runtime' => '5.80002';
- requires 'Catalyst::Plugin::ConfigLoader';
- B<requires 'Catalyst::Plugin::Static::Simple';>
- requires 'Catalyst::Action::RenderView';
- ...
-
B<Note:> Recent versions of C<Catalyst::Devel> have used a variety of
techniques to load these plugins/flags. For example, you might see
the following:
@@ -224,6 +213,14 @@
browser, not in the console window from which you're running your
application, which is where logging output usually goes.
+Make sure that when adding new plugins that you include them as a new
+dependancies within the Makefile.PL file. For example, after adding
+the StackTrace plugin the Makefile.PL should include the following
+line:
+
+ requires 'Catalyst::Plugin::StackTrace';
+
+
B<Notes:>
=over 4
More information about the Catalyst-commits
mailing list