X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FHelper.pm;h=dfd5a0e3cfe2ec42fd8de415ff7504c77e530fd3;hb=7c655b47ea3da54671ff11bb82e21352bfa6baea;hp=abbc829ab60a2d30b089557aa6d1b286b9839c40;hpb=e646f111fbeb0ab42406b5be7e6a488df3f1483f;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index abbc829..dfd5a0e 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -223,14 +223,12 @@ $name->config( root => '$base/root', ); -$name->action( +$name->setup; - '!default' => sub { - my ( \$self, \$c ) = \@_; - \$c->res->output('Congratulations, $name is on Catalyst!'); - }, - -); +sub default : Private { + my ( \$self, \$c ) = \@_; + \$c->res->output('Congratulations, $name is on Catalyst!'); +} =head1 NAME @@ -270,7 +268,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => '$name', VERSION_FROM => 'lib/$class.pm', - PREREQ_PM => { Catalyst => 0 }, + PREREQ_PM => { Catalyst => 5 }, test => { TESTS => join ' ', ( glob('t/*.t'), glob('t/*/*.t') ) } ); EOF @@ -307,7 +305,16 @@ use_ok( Catalyst::Test, '$name' ); ok( request('/')->is_success ); EOF - $self->mk_file( "$t\/02podcoverage.t", <<"EOF"); + $self->mk_file( "$t\/02pod.t", <<"EOF"); +use Test::More; + +eval "use Test::Pod 1.14"; +plan skip_all => 'Test::Pod 1.14 required' if \$@; +plan skip_all => 'set TEST_POD to enable this test' unless \$ENV{TEST_POD}; + +all_pod_files_ok(); +EOF + $self->mk_file( "$t\/03podcoverage.t", <<"EOF"); use Test::More; eval "use Test::Pod::Coverage 1.04"; @@ -322,10 +329,10 @@ sub _mk_cgi { my $self = shift; my $name = $self->{name}; my $script = $self->{script}; - $self->mk_file( "$script\/nph-cgi.pl", <<"EOF"); + $self->mk_file( "$script\/cgi.pl", <<"EOF"); $Config{startperl} -w -BEGIN { \$ENV{CATALYST_ENGINE} = 'CGI::NPH' } +BEGIN { \$ENV{CATALYST_ENGINE} = 'CGI' } use strict; use FindBin; @@ -339,7 +346,7 @@ __END__ =head1 NAME -nph-cgi - Catalyst CGI +cgi - Catalyst CGI =head1 SYNOPSIS @@ -362,7 +369,7 @@ the same terms as perl itself. =cut EOF - chmod 0700, "$script/nph-cgi.pl"; + chmod 0700, "$script/cgi.pl"; } sub _mk_fcgi { @@ -419,7 +426,7 @@ sub _mk_server { $self->mk_file( "$script\/server.pl", <<"EOF"); $Config{startperl} -w -BEGIN { \$ENV{CATALYST_ENGINE} = 'Server' } +BEGIN { \$ENV{CATALYST_ENGINE} = 'HTTP' } use strict; use Getopt::Long; @@ -619,14 +626,10 @@ sub _mk_compclass { my $action = ''; $action = <<"EOF" if $type eq 'C'; -$app->action( - - '!?default' => sub { - my ( \$self, \$c ) = \@_; - \$c->res->output('Congratulations, $class is on Catalyst!'); - }, - -); +sub default : Private { + my ( \$self, \$c ) = \@_; + \$c->res->output('Congratulations, $class is on Catalyst!'); +} EOF my $file = $self->{file}; return $self->mk_file( "$file", <<"EOF");