X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FHelper.pm;h=8d3fbb7f815b5e4d3a61a2cc22a794e465ca9e67;hp=3b8679396ea1175739c8dbfcb68540393152b858;hb=0ba80bce27a56d366c8d44c254332dd83f9ba0f9;hpb=0ff7106c9f4652163ca58c84130de0fee52ea2f9 diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index 3b86793..8d3fbb7 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -82,7 +82,6 @@ sub mk_app { if ($gen_app) { $self->_mk_dirs; - $self->_mk_config; $self->_mk_appclass; $self->_mk_readme; $self->_mk_changes; @@ -355,14 +354,6 @@ sub _mk_makefile { } } -sub _mk_config { - my $self = shift; - my $dir = $self->{dir}; - my $appprefix = $self->{appprefix}; - $self->render_file( 'config', - File::Spec->catfile( $dir, "$appprefix.json" ) ); -} - sub _mk_readme { my $self = shift; my $dir = $self->{dir}; @@ -542,6 +533,11 @@ use Catalyst qw/-Debug Static::Simple/; our $VERSION = '0.01'; # +# Configure the application +# +__PACKAGE__->config( { name => '[% name %]' } ); + +# # Start the application # __PACKAGE__->setup; @@ -615,10 +611,6 @@ catalyst; install_script glob('script/*.pl'); auto_install; WriteAll; -__config__ -{ - "name": "[% name %]" -} __readme__ Run script/[% appprefix %]_server.pl to test the application. __changes__ @@ -784,7 +776,7 @@ my $port = 3000; my $keepalive = 0; my $restart = 0; my $restart_delay = 1; -my $restart_regex = '\.yml$|\.yaml$|\.json|\.pm$'; +my $restart_regex = '\.yml$|\.yaml$|\.pm$'; my @argv = @ARGV; @@ -845,7 +837,7 @@ require [% name %]; -rd -restartdelay delay between file checks -rr -restartregex regex match files that trigger a restart when modified - (defaults to '\.yml$|\.yaml$|\.json|\.pm$') + (defaults to '\.yml$|\.yaml$|\.pm$') See also: perldoc Catalyst::Manual