X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FHelper.pm;h=dfd5a0e3cfe2ec42fd8de415ff7504c77e530fd3;hb=72596f03a20aff3156e410d35e267ec90ee2b849;hp=ed6dd3c829cbf62d9e036bab6c6eb62a66f49454;hpb=d8ab1b4536e4d5ed86ad6c6f054e66a428b749ae;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index ed6dd3c..dfd5a0e 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -39,7 +39,6 @@ sub mk_app { $self->_mk_changes; $self->_mk_apptest; $self->_mk_cgi; - $self->_mk_nphcgi; $self->_mk_fcgi; $self->_mk_server; $self->_mk_test; @@ -224,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 @@ -271,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 @@ -308,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"; @@ -366,53 +372,6 @@ EOF chmod 0700, "$script/cgi.pl"; } -sub _mk_nphcgi { - my $self = shift; - my $name = $self->{name}; - my $script = $self->{script}; - $self->mk_file( "$script\/nph-cgi.pl", <<"EOF"); -$Config{startperl} -w - -BEGIN { \$ENV{CATALYST_ENGINE} = 'CGI::NPH' } - -use strict; -use FindBin; -use lib "\$FindBin::Bin/../lib"; -use $name; - -$name->run; - -1; -__END__ - -=head1 NAME - -nph-cgi - Catalyst CGI - -=head1 SYNOPSIS - -See L - -=head1 DESCRIPTION - -Run a Catalyst application as nph cgi. - -=head1 AUTHOR - -Sebastian Riedel, C - -=head1 COPYRIGHT - -Copyright 2004 Sebastian Riedel. All rights reserved. - -This library is free software. You can redistribute it and/or modify it under -the same terms as perl itself. - -=cut -EOF - chmod 0700, "$script/nph-cgi.pl"; -} - sub _mk_fcgi { my $self = shift; my $name = $self->{name}; @@ -467,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; @@ -667,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");