From: Marcus Ramberg Date: Wed, 18 Jul 2007 12:51:23 +0000 (+0000) Subject: Fix defaults, add bindlex example X-Git-Tag: 1.09~37 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=07db7008f03eed69067da70bd944ba1d37d4a39c;p=catagits%2FCatalyst-Devel.git Fix defaults, add bindlex example --- diff --git a/Changes b/Changes index 31eddd0..693f7e3 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ This file documents the revision history for Perl extension Catalyst-Devel. + - Changed default dependency to Catalyst::Runtime + - Added BindLex example to create script + 1.02 2006-11-15 - Added dep to Catalyst::Manual - added option to send errors to STDOUT in fastcgi script diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index 038a077..50c4e2e 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -667,7 +667,7 @@ use inc::Module::Install; name '[% dir %]'; all_from '[% path %]'; -requires 'Catalyst' => '[% catalyst_version %]'; +requires 'Catalyst::Runtime' => '[% catalyst_version %]'; requires 'Catalyst::Plugin::ConfigLoader'; requires 'Catalyst::Plugin::Static::Simple'; requires 'Catalyst::Action::RenderView'; @@ -1044,6 +1044,7 @@ pod2usage(1) unless $helper->mk_component( '[% name %]', @ARGV ); Examples: [% appprefix %]_create.pl controller My::Controller + [% appprefix %]_create.pl controller My::Controller BindLex [% appprefix %]_create.pl -mechanize controller My::Controller [% appprefix %]_create.pl view My::View [% appprefix %]_create.pl view MyView TT