X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=script%2Fcatalyst.pl;h=6a20cfed16f03a3105c68c720b28fb77feaa66cc;hp=14ae648a0d61f86463ae0e14939c2862680a36db;hb=e4d883627ffd461f5ad4c55f3d6f5126c6513616;hpb=4be535b191e65b338b0c7d62b7c6acad83f7d455 diff --git a/script/catalyst.pl b/script/catalyst.pl index 14ae648..6a20cfe 100755 --- a/script/catalyst.pl +++ b/script/catalyst.pl @@ -5,15 +5,23 @@ use Getopt::Long; use Pod::Usage; use Catalyst::Helper; -my $help = 0; -my $nonew = 0; - -GetOptions( 'help|?' => \$help, - 'nonew' => \$nonew ); +my $help = 0; +my $nonew = 0; +my $scripts = 0; +my $short = 0; + +GetOptions( + 'help|?' => \$help, + 'nonew' => \$nonew, + 'scripts' => \$scripts, + 'short' => \$short +); pod2usage(1) if ( $help || !$ARGV[0] ); -my $helper = Catalyst::Helper->new({'.newfiles' => !$nonew}); +my $helper = + Catalyst::Helper->new( + { '.newfiles' => !$nonew, 'scripts' => $scripts, 'short' => $short } ); pod2usage(1) unless $helper->mk_app( $ARGV[0] ); 1; @@ -28,8 +36,10 @@ catalyst - Bootstrap a Catalyst application catalyst.pl [options] application-name Options: - -help display this help and exits - -nonew don't create a .new file where a file to be created exists + -help display this help and exits + -nonew don't create a .new file where a file to be created exists + -scripts update helper scripts only + -short use short types, like C instead of Controller... application-name must be a valid Perl module name and can include "::" @@ -118,9 +128,7 @@ test directory The application module generated by the C script is functional, -although it reacts to all requests by outputting the message: - - Congratulations, My::App is on Catalyst! +although it reacts to all requests by outputting a friendly welcome screen. =head1 NOTE @@ -143,15 +151,15 @@ L, L =head1 AUTHOR -Sebastian Riedel , -Andrew Ford +Sebastian Riedel, C, +Andrew Ford, C =head1 COPYRIGHT Copyright 2004-2005 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. +This library is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. =cut