Updated Helper.pm MANIFEST and Changes
Christian Hansen [Wed, 22 Jun 2005 00:07:14 +0000 (00:07 +0000)]
Changes
MANIFEST
lib/Catalyst/Helper.pm

diff --git a/Changes b/Changes
index 754c608..97a3f3b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -8,6 +8,7 @@ This file documents the revision history for Perl extension Catalyst.
         - Added $c->detach for non returning forwards
         - Added unified error handling, Catalyst::Exception
         - Added section on param handling in Intro.pod
+        - Added Catalyst::Setup
 
 5.23  2005-06-03 02:30:00
         - added support for non Catalyst::Base components to live in namespace
index 06b7747..8a59948 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -43,6 +43,7 @@ lib/Catalyst/Manual/Tutorial.pod
 lib/Catalyst/Request.pm
 lib/Catalyst/Request/Upload.pm
 lib/Catalyst/Response.pm
+lib/Catalyst/Setup.pm
 lib/Catalyst/Test.pm
 lib/Catalyst/Utils.pm
 Makefile.PL
index e4cd7f5..7ed7b5b 100644 (file)
@@ -430,13 +430,13 @@ __appclass__
 package [% name %];
 
 use strict;
-use Catalyst qw/-Debug/;
+use base 'Catalyst';
 
 our $VERSION = '0.01';
 
 [% name %]->config( name => '[% name %]' );
 
-[% name %]->setup;
+[% name %]->setup( qw/-Debug/ );
 
 =head1 NAME