[Catalyst-commits] r10104 -
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:00:20 GMT 2009
Author: kiffin
Date: 2009-05-13 09:00:20 +0000 (Wed, 13 May 2009)
New Revision: 10104
Modified:
Catalyst-Manual/5.70/branches/depluralise/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod
Log:
New dependency added to the Makefile.PL file StackTrace.
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 08:46:09 UTC (rev 10103)
+++ Catalyst-Manual/5.70/branches/depluralise/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod 2009-05-13 09:00:20 UTC (rev 10104)
@@ -196,6 +196,17 @@
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:
More information about the Catalyst-commits
mailing list