From: Christian Hansen Date: Wed, 22 Jun 2005 00:07:14 +0000 (+0000) Subject: Updated Helper.pm MANIFEST and Changes X-Git-Tag: 5.7099_04~1298 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=fe2cf2a39c8ed0db07dd13ad6fe3aa0a8f477b0e Updated Helper.pm MANIFEST and Changes --- diff --git a/Changes b/Changes index 754c608..97a3f3b 100644 --- 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 diff --git a/MANIFEST b/MANIFEST index 06b7747..8a59948 100644 --- 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 diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index e4cd7f5..7ed7b5b 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -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