typo in Intro.pm (thanks LTjake)
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Helper.pm
CommitLineData
fc7ec1d9 1package Catalyst::Helper;
2
3use strict;
4use base 'Class::Accessor::Fast';
f1d0b7ea 5use Config;
fc7ec1d9 6use File::Spec;
7use File::Path;
8use IO::File;
9use FindBin;
61cfdd57 10use Template;
2a276acb 11use Catalyst;
61cfdd57 12
13my %cache;
fc7ec1d9 14
15=head1 NAME
16
17Catalyst::Helper - Bootstrap a Catalyst application
18
19=head1 SYNOPSIS
20
21See L<Catalyst::Manual::Intro>
22
23=head1 DESCRIPTION
24
b160463f 25Bootstrap a Catalyst application. Autogenerates scripts
fc7ec1d9 26
27=head2 METHODS
28
61cfdd57 29=head3 get_file
30
31Slurp file from DATA.
32
33=cut
34
35sub get_file {
36 my ( $self, $class, $file ) = @_;
37 unless ( $cache{$class} ) {
38 local $/;
39 $cache{$class} = eval "package $class; <DATA>";
40 }
41 my $data = $cache{$class};
42 my @files = split /^__(.+)__\n/m, $data;
43 shift @files;
44 while (@files) {
45 my ( $name, $content ) = splice @files, 0, 2;
46 return $content if $name eq $file;
47 }
48 return 0;
49}
50
fc7ec1d9 51=head3 mk_app
52
b160463f 53Create the main application skeleton.
54
fc7ec1d9 55=cut
56
57sub mk_app {
58 my ( $self, $name ) = @_;
59 return 0 if $name =~ /[^\w\:]/;
60 $self->{name} = $name;
61 $self->{dir} = $name;
62 $self->{dir} =~ s/\:\:/-/g;
4f6748f1 63 $self->{appprefix} = lc $self->{dir};
64 $self->{appprefix} =~ s/-/_/g;
61cfdd57 65 $self->{startperl} = $Config{startperl};
4f6748f1 66 $self->{scriptgen} = $Catalyst::CATALYST_SCRIPT_GEN;
67 $self->{author} = $self->{author} = $ENV{'AUTHOR'}
28e68b83 68 || eval { @{ [ getpwuid($<) ] }[6] }
69 || 'A clever guy';
fc7ec1d9 70 $self->_mk_dirs;
71 $self->_mk_appclass;
4f6748f1 72 $self->_mk_build;
fc7ec1d9 73 $self->_mk_makefile;
91864987 74 $self->_mk_readme;
75 $self->_mk_changes;
fc7ec1d9 76 $self->_mk_apptest;
bc024080 77 $self->_mk_cgi;
28e68b83 78 $self->_mk_fastcgi;
fc7ec1d9 79 $self->_mk_server;
80 $self->_mk_test;
81 $self->_mk_create;
82 return 1;
83}
84
ad41e777 85=head3 mk_component
86
b160463f 87This method is called by create.pl to make new components
88for your application.
89
ad41e777 90=cut
91
92sub mk_component {
b5524568 93 my $self = shift;
94 my $app = shift;
95 $self->{app} = $app;
4f6748f1 96 $self->{author} = $self->{author} = $ENV{'AUTHOR'}
28e68b83 97 || eval { @{ [ getpwuid($<) ] }[6] }
98 || 'A clever guy';
b5524568 99 $self->{base} = File::Spec->catdir( $FindBin::Bin, '..' );
100 unless ( $_[0] =~ /^model|m|view|v|controller|c\$/i ) {
101 my $helper = shift;
102 my @args = @_;
103 my $class = "Catalyst::Helper::$helper";
ad41e777 104 eval "require $class";
105 die qq/Couldn't load helper "$class", "$@"/ if $@;
b5524568 106 if ( $class->can('mk_stuff') ) {
107 return 1 unless $class->mk_stuff( $self, @args );
ad41e777 108 }
ad41e777 109 }
ad41e777 110 else {
b5524568 111 my $type = shift;
adfe7ead 112 my $name = shift || "Missing name for model/view/controller";
28e68b83 113 my $helper = shift;
b5524568 114 my @args = @_;
115 return 0 if $name =~ /[^\w\:]/;
116 $type = 'M' if $type =~ /model|m/i;
117 $type = 'V' if $type =~ /view|v/i;
118 $type = 'C' if $type =~ /controller|c/i;
119 $self->{type} = $type;
120 $self->{name} = $name;
121 $self->{class} = "$app\::$type\::$name";
122
123 # Class
124 my $appdir = File::Spec->catdir( split /\:\:/, $app );
125 my $path =
126 File::Spec->catdir( $FindBin::Bin, '..', 'lib', $appdir, $type );
127 my $file = $name;
128 if ( $name =~ /\:/ ) {
129 my @path = split /\:\:/, $name;
130 $file = pop @path;
131 $path = File::Spec->catdir( $path, @path );
132 mkpath $path;
133 }
134 $file = File::Spec->catfile( $path, "$file.pm" );
135 $self->{file} = $file;
136
137 # Test
138 $self->{test_dir} = File::Spec->catdir( $FindBin::Bin, '..', 't' );
139 $self->{test} = $self->next_test;
140
141 # Helper
142 if ($helper) {
143 my $comp = 'Model';
144 $comp = 'View' if $type eq 'V';
145 $comp = 'Controller' if $type eq 'C';
146 my $class = "Catalyst::Helper::$comp\::$helper";
147 eval "require $class";
148 die qq/Couldn't load helper "$class", "$@"/ if $@;
149 if ( $class->can('mk_compclass') ) {
150 return 1 unless $class->mk_compclass( $self, @args );
151 }
152 else { return 1 unless $self->_mk_compclass }
153
154 if ( $class->can('mk_comptest') ) {
155 $class->mk_comptest( $self, @args );
156 }
157 else { $self->_mk_comptest }
158 }
159
160 # Fallback
161 else {
162 return 1 unless $self->_mk_compclass;
163 $self->_mk_comptest;
164 }
ad41e777 165 }
166 return 1;
167}
168
169=head3 mk_dir
170
b160463f 171Surprisingly, this function makes a directory.
172
ad41e777 173=cut
174
175sub mk_dir {
176 my ( $self, $dir ) = @_;
177 if ( -d $dir ) {
178 print qq/ exists "$dir"\n/;
179 return 0;
180 }
181 if ( mkpath $dir) {
182 print qq/created "$dir"\n/;
183 return 1;
184 }
185 die qq/Couldn't create "$dir", "$!"/;
186}
187
188=head3 mk_file
189
b160463f 190writes content to a file.
191
ad41e777 192=cut
193
194sub mk_file {
195 my ( $self, $file, $content ) = @_;
196 if ( -e $file ) {
197 print qq/ exists "$file"\n/;
198 return 0;
199 }
200 if ( my $f = IO::File->new("> $file") ) {
201 print $f $content;
202 print qq/created "$file"\n/;
203 return 1;
204 }
205 die qq/Couldn't create "$file", "$!"/;
206}
207
208=head3 next_test
209
210=cut
211
212sub next_test {
213 my ( $self, $tname ) = @_;
3cb1db8c 214 if ($tname) { $tname = "$tname.t" }
ad41e777 215 else {
216 my $name = $self->{name};
ad41e777 217 my $prefix = $name;
218 $prefix =~ s/::/_/g;
219 $prefix = lc $prefix;
3cb1db8c 220 $tname = $prefix . '.t';
ad41e777 221 $self->{prefix} = $prefix;
222 }
3cb1db8c 223 my $dir = $self->{test_dir};
224 my $type = lc $self->{type};
225 return File::Spec->catfile( $dir, $type, $tname );
ad41e777 226}
227
61cfdd57 228=head3 render_file
229
b160463f 230Render and create a file from a template in DATA using
231Template Toolkit.
61cfdd57 232
233=cut
234
235sub render_file {
236 my ( $self, $file, $path, $vars ) = @_;
237 $vars ||= {};
238 my $t = Template->new;
239 my $template = $self->get_file( ( caller(0) )[0], $file );
240 return 0 unless $template;
241 my $output;
242 $t->process( \$template, { %{$self}, %$vars }, \$output );
243 $self->mk_file( $path, $output );
244}
245
fc7ec1d9 246sub _mk_dirs {
247 my $self = shift;
ad41e777 248 $self->mk_dir( $self->{dir} );
91864987 249 $self->{script} = File::Spec->catdir( $self->{dir}, 'script' );
250 $self->mk_dir( $self->{script} );
fc7ec1d9 251 $self->{lib} = File::Spec->catdir( $self->{dir}, 'lib' );
ad41e777 252 $self->mk_dir( $self->{lib} );
fc7ec1d9 253 $self->{root} = File::Spec->catdir( $self->{dir}, 'root' );
ad41e777 254 $self->mk_dir( $self->{root} );
fc7ec1d9 255 $self->{t} = File::Spec->catdir( $self->{dir}, 't' );
ad41e777 256 $self->mk_dir( $self->{t} );
3cb1db8c 257 $self->mk_dir( File::Spec->catdir( $self->{t}, 'm' ) );
258 $self->mk_dir( File::Spec->catdir( $self->{t}, 'v' ) );
259 $self->mk_dir( File::Spec->catdir( $self->{t}, 'c' ) );
fc7ec1d9 260 $self->{class} = File::Spec->catdir( split( /\:\:/, $self->{name} ) );
261 $self->{mod} = File::Spec->catdir( $self->{lib}, $self->{class} );
ad41e777 262 $self->mk_dir( $self->{mod} );
fc7ec1d9 263 $self->{m} = File::Spec->catdir( $self->{mod}, 'M' );
ad41e777 264 $self->mk_dir( $self->{m} );
fc7ec1d9 265 $self->{v} = File::Spec->catdir( $self->{mod}, 'V' );
ad41e777 266 $self->mk_dir( $self->{v} );
fc7ec1d9 267 $self->{c} = File::Spec->catdir( $self->{mod}, 'C' );
ad41e777 268 $self->mk_dir( $self->{c} );
fc7ec1d9 269 $self->{base} = File::Spec->rel2abs( $self->{dir} );
270}
271
272sub _mk_appclass {
ad41e777 273 my $self = shift;
274 my $mod = $self->{mod};
61cfdd57 275 $self->render_file( 'appclass', "$mod.pm" );
276}
277
4f6748f1 278sub _mk_build {
279 my $self = shift;
280 my $dir = $self->{dir};
281 $self->render_file( 'build', "$dir\/Build.PL" );
282}
283
61cfdd57 284sub _mk_makefile {
285 my $self = shift;
286 my $dir = $self->{dir};
287 $self->render_file( 'makefile', "$dir\/Makefile.PL" );
288}
289
290sub _mk_readme {
291 my $self = shift;
292 my $dir = $self->{dir};
293 $self->render_file( 'readme', "$dir\/README" );
294}
295
296sub _mk_changes {
297 my $self = shift;
298 my $dir = $self->{dir};
299 my $time = localtime time;
300 $self->render_file( 'changes', "$dir\/Changes", { time => $time } );
301}
302
303sub _mk_apptest {
304 my $self = shift;
305 my $t = $self->{t};
306 $self->render_file( 'apptest', "$t\/01app.t" );
307 $self->render_file( 'podtest', "$t\/02pod.t" );
308 $self->render_file( 'podcoveragetest', "$t\/03podcoverage.t" );
309}
310
311sub _mk_cgi {
28e68b83 312 my $self = shift;
313 my $script = $self->{script};
4f6748f1 314 my $appprefix = $self->{appprefix};
315 $self->render_file( 'cgi', "$script\/$appprefix\_cgi.pl" );
316 chmod 0700, "$script/$appprefix\_cgi.pl";
61cfdd57 317}
318
28e68b83 319sub _mk_fastcgi {
320 my $self = shift;
321 my $script = $self->{script};
4f6748f1 322 my $appprefix = $self->{appprefix};
28e68b83 323 $self->render_file( 'fastcgi', "$script\/$appprefix\_fastcgi.pl" );
324 chmod 0700, "$script/$appprefix\_fastcgi.pl";
61cfdd57 325}
326
327sub _mk_server {
28e68b83 328 my $self = shift;
329 my $script = $self->{script};
4f6748f1 330 my $appprefix = $self->{appprefix};
331 $self->render_file( 'server', "$script\/$appprefix\_server.pl" );
332 chmod 0700, "$script/$appprefix\_server.pl";
61cfdd57 333}
334
335sub _mk_test {
28e68b83 336 my $self = shift;
337 my $script = $self->{script};
4f6748f1 338 my $appprefix = $self->{appprefix};
339 $self->render_file( 'test', "$script/$appprefix\_test.pl" );
340 chmod 0700, "$script/$appprefix\_test.pl";
61cfdd57 341}
342
343sub _mk_create {
28e68b83 344 my $self = shift;
345 my $script = $self->{script};
4f6748f1 346 my $appprefix = $self->{appprefix};
347 $self->render_file( 'create', "$script\/$appprefix\_create.pl" );
348 chmod 0700, "$script/$appprefix\_create.pl";
61cfdd57 349}
350
351sub _mk_compclass {
352 my $self = shift;
353 my $file = $self->{file};
354 return $self->render_file( 'compclass', "$file" );
355}
356
357sub _mk_comptest {
358 my $self = shift;
359 my $test = $self->{test};
360 $self->render_file( 'comptest', "$test" );
361}
362
363=head1 HELPERS
364
365Helpers are classes that provide two methods.
366
367 * mk_compclass - creates the Component class
368 * mk_comptest - creates the Component test
369
370So when you call C<bin/create view MyView TT>, create would try to execute
371Catalyst::Helper::View::TT->mk_compclass and
372Catalyst::Helper::View::TT->mk_comptest.
373
374See L<Catalyst::Helper::View::TT> and L<Catalyst::Helper::Model::CDBI> for
375examples.
376
377All helper classes should be under one of the following namespaces.
378
379 Catalyst::Helper::Model::
380 Catalyst::Helper::View::
381 Catalyst::Helper::Controller::
382
ddb46924 383=head1 NOTE
384
385The helpers will read author name from /etc/passwd by default.
386To override, please export the AUTHOR variable.
387
61cfdd57 388=head1 SEE ALSO
389
390L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
391L<Catalyst::Response>, L<Catalyst>
392
393=head1 AUTHOR
394
395Sebastian Riedel, C<sri@oook.de>
396
397=head1 LICENSE
398
b160463f 399This library is free software . You can redistribute it and/or modify
400it under the same terms as perl itself.
61cfdd57 401
402=cut
403
4041;
405__DATA__
406
407__appclass__
408package [% name %];
fc7ec1d9 409
410use strict;
411use Catalyst qw/-Debug/;
412
61cfdd57 413our $VERSION = '0.01';
fc7ec1d9 414
4efc6b10 415[% name %]->config( name => '[% name %]' );
5811fa3e 416
61cfdd57 417[% name %]->setup;
fc7ec1d9 418
5a8ed4fe 419sub default : Private {
61cfdd57 420 my ( $self, $c ) = @_;
421 $c->res->output('Congratulations, [% name %] is on Catalyst!');
5a8ed4fe 422}
fc7ec1d9 423
424=head1 NAME
425
61cfdd57 426[% name %] - A very nice application
fc7ec1d9 427
428=head1 SYNOPSIS
429
430 Very simple to use
431
432=head1 DESCRIPTION
433
434Very nice application.
435
436=head1 AUTHOR
437
ddb46924 438[%author%]
fc7ec1d9 439
440=head1 LICENSE
441
b160463f 442This library is free software . You can redistribute it and/or modify
443it under the same terms as perl itself.
fc7ec1d9 444
445=cut
446
4471;
fc7ec1d9 448
87c87366 449__makefile__
450 unless ( eval "use Module::Build::Compat 0.02; 1" ) {
451 print "This module requires Module::Build to install itself.\n";
452
453 require ExtUtils::MakeMaker;
454 my $yn =
455 ExtUtils::MakeMaker::prompt( ' Install Module::Build now from CPAN?', 'y' );
456
457 unless ( $yn =~ /^y/i ) {
458 die " *** Cannot install without Module::Build. Exiting ...\n";
459 }
460
461 require Cwd;
462 require File::Spec;
463 require CPAN;
464
465 # Save this 'cause CPAN will chdir all over the place.
466 my $cwd = Cwd::cwd();
467 my $makefile = File::Spec->rel2abs($0);
468
469 CPAN::Shell->install('Module::Build::Compat')
470 or die " *** Cannot install without Module::Build. Exiting ...\n";
471
472 chdir $cwd or die "Cannot chdir() back to $cwd: $!";
473 }
474 eval "use Module::Build::Compat 0.02; 1" or die $@;
475 use lib '_build/lib';
476 Module::Build::Compat->run_build_pl( args => \@ARGV );
477 require Module::Build;
478 Module::Build::Compat->write_makefile( build_class => 'Module::Build' );
479
4f6748f1 480__build__
481use strict;
482use Catalyst::Build;
483
484my $build = Catalyst::Build->new(
485 create_makefile_pl => 'passthrough',
486 license => 'perl',
487 module_name => '[% name %]',
809fd1e0 488 requires => { Catalyst => '5.10' },
adfe7ead 489 create_makefile_pl => 'passthrough',
4f6748f1 490 script_files => [ glob('script/*') ],
491 test_files => [ glob('t/*.t'), glob('t/*/*.t') ]
fc7ec1d9 492);
4f6748f1 493$build->create_build_script;
fc7ec1d9 494
61cfdd57 495__readme__
4f6748f1 496Run script/[% apprefix %]_server.pl to test the application.
91864987 497
61cfdd57 498__changes__
7a870961 499This file documents the revision history for Perl extension [% name %].
91864987 500
61cfdd57 5010.01 [% time %]
91864987 502 - initial revision, generated by Catalyst
91864987 503
61cfdd57 504__apptest__
fc7ec1d9 505use Test::More tests => 2;
61cfdd57 506use_ok( Catalyst::Test, '[% name %]' );
fc7ec1d9 507
508ok( request('/')->is_success );
61cfdd57 509
510__podtest__
5a8fd7e9 511use Test::More;
512
513eval "use Test::Pod 1.14";
61cfdd57 514plan skip_all => 'Test::Pod 1.14 required' if $@;
515plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
5a8fd7e9 516
517all_pod_files_ok();
61cfdd57 518
519__podcoveragetest__
1df125c9 520use Test::More;
521
522eval "use Test::Pod::Coverage 1.04";
61cfdd57 523plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
524plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
1df125c9 525
526all_pod_coverage_ok();
fc7ec1d9 527
195631f4 528__cgi__
61cfdd57 529[% startperl %] -w
367d15f8 530BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
d8ab1b45 531
532use strict;
533use FindBin;
61cfdd57 534use lib "$FindBin::Bin/../lib";
535use [% name %];
d8ab1b45 536
61cfdd57 537[% name %]->run;
d8ab1b45 538
5391;
d8ab1b45 540
541=head1 NAME
542
543cgi - Catalyst CGI
544
545=head1 SYNOPSIS
546
547See L<Catalyst::Manual>
548
549=head1 DESCRIPTION
550
551Run a Catalyst application as cgi.
552
553=head1 AUTHOR
554
61cfdd57 555Sebastian Riedel, C<sri@oook.de>
d8ab1b45 556
557=head1 COPYRIGHT
558
559Copyright 2004 Sebastian Riedel. All rights reserved.
560
b160463f 561This library is free software. You can redistribute it and/or modify
562it under the same terms as perl itself.
d8ab1b45 563
564=cut
d8ab1b45 565
28e68b83 566__fastcgi__
61cfdd57 567[% startperl %] -w
cb8d90e5 568
367d15f8 569BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
cb8d90e5 570
571use strict;
572use FindBin;
61cfdd57 573use lib "$FindBin::Bin/../lib";
574use [% name %];
cb8d90e5 575
61cfdd57 576[% name %]->run;
cb8d90e5 577
5781;
cb8d90e5 579
580=head1 NAME
581
28e68b83 582fastcgi - Catalyst FastCGI
cb8d90e5 583
584=head1 SYNOPSIS
585
586See L<Catalyst::Manual>
587
588=head1 DESCRIPTION
589
28e68b83 590Run a Catalyst application as fastcgi.
cb8d90e5 591
592=head1 AUTHOR
593
61cfdd57 594Sebastian Riedel, C<sri@oook.de>
cb8d90e5 595
596=head1 COPYRIGHT
597
598Copyright 2004 Sebastian Riedel. All rights reserved.
599
b160463f 600This library is free software. You can redistribute it and/or modify
601it under the same terms as perl itself.
cb8d90e5 602
603=cut
cb8d90e5 604
61cfdd57 605__server__
606[% startperl %] -w
fc7ec1d9 607
42a57832 608BEGIN {
367d15f8 609 $ENV{CATALYST_ENGINE} ||= 'HTTP';
42a57832 610 $ENV{CATALYST_SCRIPT_GEN} = [% scriptgen %];
611}
585893b9 612
fc7ec1d9 613use strict;
614use Getopt::Long;
615use Pod::Usage;
616use FindBin;
61cfdd57 617use lib "$FindBin::Bin/../lib";
618use [% name %];
fc7ec1d9 619
61cfdd57 620my $help = 0;
621my $port = 3000;
fc7ec1d9 622
61cfdd57 623GetOptions( 'help|?' => \$help, 'port=s' => \$port );
fc7ec1d9 624
195631f4 625pod2usage(1) if $help;
fc7ec1d9 626
61cfdd57 627[% name %]->run($port);
fc7ec1d9 628
6291;
fc7ec1d9 630
631=head1 NAME
632
633server - Catalyst Testserver
634
635=head1 SYNOPSIS
636
91864987 637server.pl [options]
fc7ec1d9 638
639 Options:
ad41e777 640 -? -help display this help and exits
641 -p -port port (defaults to 3000)
fc7ec1d9 642
03a53815 643 See also:
644 perldoc Catalyst::Manual
645 perldoc Catalyst::Manual::Intro
646
fc7ec1d9 647=head1 DESCRIPTION
648
649Run a Catalyst Testserver for this application.
650
651=head1 AUTHOR
652
61cfdd57 653Sebastian Riedel, C<sri@oook.de>
fc7ec1d9 654
655=head1 COPYRIGHT
656
657Copyright 2004 Sebastian Riedel. All rights reserved.
658
b160463f 659This library is free software. You can redistribute it and/or modify
660it under the same terms as perl itself.
fc7ec1d9 661
662=cut
fc7ec1d9 663
61cfdd57 664__test__
665[% startperl %] -w
fc7ec1d9 666
367d15f8 667BEGIN { $ENV{CATALYST_ENGINE} ||= 'Test' }
e646f111 668
fc7ec1d9 669use strict;
670use Getopt::Long;
671use Pod::Usage;
672use FindBin;
61cfdd57 673use lib "$FindBin::Bin/../lib";
674use [% name %];
fc7ec1d9 675
61cfdd57 676my $help = 0;
fc7ec1d9 677
61cfdd57 678GetOptions( 'help|?' => \$help );
fc7ec1d9 679
61cfdd57 680pod2usage(1) if ( $help || !$ARGV[0] );
fc7ec1d9 681
61cfdd57 682print [% name %]->run($ARGV[0])->content . "\n";
fc7ec1d9 683
6841;
fc7ec1d9 685
686=head1 NAME
687
688test - Catalyst Test
689
690=head1 SYNOPSIS
691
91864987 692test.pl [options] uri
fc7ec1d9 693
694 Options:
695 -help display this help and exits
696
697 Examples:
91864987 698 test.pl http://localhost/some_action
699 test.pl /some_action
fc7ec1d9 700
03a53815 701 See also:
702 perldoc Catalyst::Manual
703 perldoc Catalyst::Manual::Intro
704
fc7ec1d9 705=head1 DESCRIPTION
706
707Run a Catalyst action from the comand line.
708
709=head1 AUTHOR
710
61cfdd57 711Sebastian Riedel, C<sri@oook.de>
fc7ec1d9 712
713=head1 COPYRIGHT
714
715Copyright 2004 Sebastian Riedel. All rights reserved.
716
b160463f 717This library is free software. You can redistribute it and/or modify
718it under the same terms as perl itself.
fc7ec1d9 719
720=cut
fc7ec1d9 721
61cfdd57 722__create__
723[% startperl %] -w
fc7ec1d9 724
725use strict;
726use Getopt::Long;
727use Pod::Usage;
728use Catalyst::Helper;
729
61cfdd57 730my $help = 0;
fc7ec1d9 731
732GetOptions( 'help|?' => \$help );
733
61cfdd57 734pod2usage(1) if ( $help || !$ARGV[0] );
fc7ec1d9 735
61cfdd57 736my $helper = Catalyst::Helper->new;
737pod2usage(1) unless $helper->mk_component( '[% name %]', @ARGV );
fc7ec1d9 738
7391;
fc7ec1d9 740
741=head1 NAME
742
743create - Create a new Catalyst Component
744
745=head1 SYNOPSIS
746
91864987 747create.pl [options] model|view|controller name [helper] [options]
fc7ec1d9 748
749 Options:
750 -help display this help and exits
751
752 Examples:
91864987 753 create.pl controller My::Controller
754 create.pl view My::View
755 create.pl view MyView TT
756 create.pl view TT TT
757 create.pl model My::Model
758 create.pl model SomeDB CDBI dbi:SQLite:/tmp/my.db
759 create.pl model AnotherDB CDBI dbi:Pg:dbname=foo root 4321
b5524568 760 create.pl Ajax
03a53815 761
762 See also:
763 perldoc Catalyst::Manual
764 perldoc Catalyst::Manual::Intro
fc7ec1d9 765
766=head1 DESCRIPTION
767
768Create a new Catalyst Component.
769
770=head1 AUTHOR
771
772Sebastian Riedel, C<sri\@oook.de>
773
774=head1 COPYRIGHT
775
776Copyright 2004 Sebastian Riedel. All rights reserved.
777
b160463f 778This library is free software. You can redistribute it and/or modify
779it under the same terms as perl itself.
fc7ec1d9 780
781=cut
fc7ec1d9 782
61cfdd57 783__compclass__
784package [% class %];
785
786use strict;
787use base 'Catalyst::Base';
fc7ec1d9 788
61cfdd57 789[% IF type == 'C' %]
5a8ed4fe 790sub default : Private {
ffa15401 791 my ( $self, $c ) = @_;
61cfdd57 792 $c->res->output('Congratulations, [% class %] is on Catalyst!');
5a8ed4fe 793}
fc7ec1d9 794
61cfdd57 795[% END %]
fc7ec1d9 796=head1 NAME
797
61cfdd57 798[% class %] - A Component
fc7ec1d9 799
800=head1 SYNOPSIS
801
802 Very simple to use
803
804=head1 DESCRIPTION
805
806Very nice component.
807
808=head1 AUTHOR
809
ddb46924 810[%author%]
fc7ec1d9 811
812=head1 LICENSE
813
b160463f 814This library is free software . You can redistribute it and/or modify
815it under the same terms as perl itself.
fc7ec1d9 816
817=cut
818
8191;
fc7ec1d9 820
61cfdd57 821__comptest__
822[% IF type == 'C' %]
fc7ec1d9 823use Test::More tests => 3;
61cfdd57 824use_ok( Catalyst::Test, '[% app %]' );
825use_ok('[% class %]');
fc7ec1d9 826
61cfdd57 827ok( request('[% prefix %]')->is_success );
828[% ELSE %]
fc7ec1d9 829use Test::More tests => 1;
61cfdd57 830use_ok('[% class %]');
831[% END %]