]> ruin.nu Git - ndwebbie.git/blob - script/ndweb_create.pl
Initial commit of catalyst files
[ndwebbie.git] / script / ndweb_create.pl
1 #!/usr/bin/perl -w
2
3 use strict;
4 use warnings;
5 use Getopt::Long;
6 use Pod::Usage;
7 use Catalyst::Helper;
8
9 my $force = 0;
10 my $mech  = 0;
11 my $help  = 0;
12
13 GetOptions(
14     'nonew|force'    => \$force,
15     'mech|mechanize' => \$mech,
16     'help|?'         => \$help
17  );
18
19 pod2usage(1) if ( $help || !$ARGV[0] );
20
21 my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
22
23 pod2usage(1) unless $helper->mk_component( 'NDWeb', @ARGV );
24
25 1;
26
27 =head1 NAME
28
29 ndweb_create.pl - Create a new Catalyst Component
30
31 =head1 SYNOPSIS
32
33 ndweb_create.pl [options] model|view|controller name [helper] [options]
34
35  Options:
36    -force        don't create a .new file where a file to be created exists
37    -mechanize    use Test::WWW::Mechanize::Catalyst for tests if available
38    -help         display this help and exits
39
40  Examples:
41    ndweb_create.pl controller My::Controller
42    ndweb_create.pl controller My::Controller BindLex
43    ndweb_create.pl -mechanize controller My::Controller
44    ndweb_create.pl view My::View
45    ndweb_create.pl view MyView TT
46    ndweb_create.pl view TT TT
47    ndweb_create.pl model My::Model
48    ndweb_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
49    dbi:SQLite:/tmp/my.db
50    ndweb_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
51    dbi:Pg:dbname=foo root 4321
52
53  See also:
54    perldoc Catalyst::Manual
55    perldoc Catalyst::Manual::Intro
56
57 =head1 DESCRIPTION
58
59 Create a new Catalyst Component.
60
61 Existing component files are not overwritten.  If any of the component files
62 to be created already exist the file will be written with a '.new' suffix.
63 This behavior can be suppressed with the C<-force> option.
64
65 =head1 AUTHOR
66
67 Sebastian Riedel, C<sri@oook.de>
68 Maintained by the Catalyst Core Team.
69
70 =head1 COPYRIGHT
71
72 This library is free software, you can redistribute it and/or modify
73 it under the same terms as Perl itself.
74
75 =cut