Default run methods not required, can be provided by the role
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / Create.pm
CommitLineData
0ba6e8aa 1package Catalyst::Script::Create;
a24a5860 2use Moose;
4ebd5ecf 3use Catalyst::Helper;
d3082fac 4use MooseX::Types::Moose qw/Bool/;
f4a497bb 5use namespace::autoclean;
4ebd5ecf 6
d3082fac 7with 'Catalyst::ScriptRole';
73e4f0f1 8
9has force => (
ab7eb5a9 10 traits => [qw(Getopt)],
73e4f0f1 11 cmd_aliases => 'nonew',
12 isa => Bool,
13 is => 'ro',
d3082fac 14 documentation => 'Force new scripts',
73e4f0f1 15);
16
17has debug => (
ab7eb5a9 18 traits => [qw(Getopt)],
73e4f0f1 19 cmd_aliases => 'd',
20 isa => Bool,
21 is => 'ro',
d3082fac 22 documentation => 'Force debug mode',
73e4f0f1 23);
24
25has mechanize => (
ab7eb5a9 26 traits => [qw(Getopt)],
73e4f0f1 27 cmd_aliases => 'mech',
28 isa => Bool,
29 is => 'ro',
d3082fac 30 documentation => 'use WWW::Mechanize',
73e4f0f1 31);
2824ec8d 32
33sub run {
f4a497bb 34 my ($self) = @_;
4ebd5ecf 35
d3082fac 36 $self->_display_help if ( !$ARGV[0] );
4ebd5ecf 37
73e4f0f1 38 my $helper = Catalyst::Helper->new( { '.newfiles' => !$self->force, mech => $self->mech } );
4ebd5ecf 39
d3082fac 40 $self->_display_help unless $helper->mk_component( $self->app, @ARGV );
2824ec8d 41
42}
4ebd5ecf 43
d6e8e664 44__PACKAGE__->meta->make_immutable;
0ba6e8aa 451;
4ebd5ecf 46
47=head1 NAME
48
d3082fac 49Catalyst::Script::Create - Create a new Catalyst Component
4ebd5ecf 50
51=head1 SYNOPSIS
52
d3082fac 53myapp_create.pl [options] model|view|controller name [helper] [options]
4ebd5ecf 54
55 Options:
56 -force don't create a .new file where a file to be created exists
57 -mechanize use Test::WWW::Mechanize::Catalyst for tests if available
58 -help display this help and exits
59
60 Examples:
d3082fac 61 myapp_create.pl controller My::Controller
62 myapp_create.pl controller My::Controller BindLex
63 myapp_create.pl -mechanize controller My::Controller
64 myapp_create.pl view My::View
65 myapp_create.pl view MyView TT
66 myapp_create.pl view TT TT
67 myapp_create.pl model My::Model
68 myapp_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\
4ebd5ecf 69 dbi:SQLite:/tmp/my.db
d3082fac 70 myapp_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\
4ebd5ecf 71 dbi:Pg:dbname=foo root 4321
72
73 See also:
74 perldoc Catalyst::Manual
75 perldoc Catalyst::Manual::Intro
76
77=head1 DESCRIPTION
78
79Create a new Catalyst Component.
80
81Existing component files are not overwritten. If any of the component files
82to be created already exist the file will be written with a '.new' suffix.
83This behavior can be suppressed with the C<-force> option.
84
85=head1 AUTHORS
86
87Catalyst Contributors, see Catalyst.pm
88
89=head1 COPYRIGHT
90
91This library is free software, you can redistribute it and/or modify
92it under the same terms as Perl itself.
93
94=cut