eliminate ticket on older version
[andk-cpan-tools.git] / CPAN-Blame / script / cpan_blame_create.pl
blobd6568f8ee0fd435b51e93f898b5519e5d75995e8
1 #!/usr/bin/env perl
3 use strict;
4 use warnings;
5 use Getopt::Long;
6 use Pod::Usage;
7 eval "use Catalyst::Helper;";
9 if ($@) {
10 die <<END;
11 To use the Catalyst development tools including catalyst.pl and the
12 generated script/myapp_create.pl you need Catalyst::Helper, which is
13 part of the Catalyst-Devel distribution. Please install this via a
14 vendor package or by running one of -
16 perl -MCPAN -e 'install Catalyst::Devel'
17 perl -MCPANPLUS -e 'install Catalyst::Devel'
18 END
21 my $force = 0;
22 my $mech = 0;
23 my $help = 0;
25 GetOptions(
26 'nonew|force' => \$force,
27 'mech|mechanize' => \$mech,
28 'help|?' => \$help
31 pod2usage(1) if ( $help || !$ARGV[0] );
33 my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
35 pod2usage(1) unless $helper->mk_component( 'CPAN::Blame', @ARGV );
39 =head1 NAME
41 cpan_blame_create.pl - Create a new Catalyst Component
43 =head1 SYNOPSIS
45 cpan_blame_create.pl [options] model|view|controller name [helper] [options]
47 Options:
48 -force don't create a .new file where a file to be created exists
49 -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
50 -help display this help and exits
52 Examples:
53 cpan_blame_create.pl controller My::Controller
54 cpan_blame_create.pl -mechanize controller My::Controller
55 cpan_blame_create.pl view My::View
56 cpan_blame_create.pl view MyView TT
57 cpan_blame_create.pl view TT TT
58 cpan_blame_create.pl model My::Model
59 cpan_blame_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
60 dbi:SQLite:/tmp/my.db
61 cpan_blame_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
62 dbi:Pg:dbname=foo root 4321
64 See also:
65 perldoc Catalyst::Manual
66 perldoc Catalyst::Manual::Intro
68 =head1 DESCRIPTION
70 Create a new Catalyst Component.
72 Existing component files are not overwritten. If any of the component files
73 to be created already exist the file will be written with a '.new' suffix.
74 This behavior can be suppressed with the C<-force> option.
76 =head1 AUTHORS
78 Catalyst Contributors, see Catalyst.pm
80 =head1 COPYRIGHT
82 This library is free software. You can redistribute it and/or modify
83 it under the same terms as Perl itself.
85 =cut