X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FScript%2FCreate.pm;h=ab85deda0a9a7ef0bbe09b162da8c68c96916194;hb=95389116fd165c265f5b7be42e1eedde13f38181;hp=c46f51cbeca5dd16d117e6a4a0e6d33e8935a9ad;hpb=410d96eb61df4f4c5beecb9bf7a6757e7e19ce24;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Script/Create.pm b/lib/Catalyst/Script/Create.pm index c46f51c..ab85ded 100644 --- a/lib/Catalyst/Script/Create.pm +++ b/lib/Catalyst/Script/Create.pm @@ -1,36 +1,18 @@ package Catalyst::Script::Create; use Moose; -use Pod::Usage; -use Catalyst::Helper; -use MooseX::Types::Moose qw/Str Bool/; +use MooseX::Types::Moose qw/Bool/; use namespace::autoclean; -with "MooseX::Getopt"; -#extends qw(MooseX::App::Cmd); +with 'Catalyst::ScriptRole'; - -has _app => ( - reader => 'app', - init_arg => 'app', - traits => [qw(NoGetopt)], - isa => Str, - is => 'ro', -); +__PACKAGE__->meta->get_attribute('help')->cmd_aliases('h'); has force => ( traits => [qw(Getopt)], cmd_aliases => 'nonew', isa => Bool, is => 'ro', - documentation => qq{ force new scripts } -); - -has help => ( - traits => [qw(Getopt)], - cmd_aliases => 'h', - isa => Bool, - is => 'ro', - documentation => qq{ display this help and exits }, + documentation => 'Force new scripts', ); has debug => ( @@ -38,7 +20,7 @@ has debug => ( cmd_aliases => 'd', isa => Bool, is => 'ro', - documentation => qq{ force debug mode } + documentation => 'Force debug mode', ); has mechanize => ( @@ -46,31 +28,33 @@ has mechanize => ( cmd_aliases => 'mech', isa => Bool, is => 'ro', - documentation => qq{ use WWW::Mechanize }, + documentation => 'use WWW::Mechanize', ); +has helper_class => ( isa => 'Str', is => 'ro', default => 'Catalyst::Helper' ); + sub run { my ($self) = @_; + $self->_exit_with_usage if !$ARGV[0]; - pod2usage(1) if ( $self->help || !$ARGV[0] ); + my $helper_class = $self->helper_class; + Class::MOP::load_class($helper_class); + my $helper = $helper_class->new( { '.newfiles' => !$self->force, mech => $self->mechanize } ); - my $helper = Catalyst::Helper->new( { '.newfiles' => !$self->force, mech => $self->mech } ); - - pod2usage(1) unless $helper->mk_component( $self->app, @ARGV ); + $self->_exit_with_usage unless $helper->mk_component( $self->application_name, @ARGV ); } __PACKAGE__->meta->make_immutable; -1; =head1 NAME -boyosplace_create.pl - Create a new Catalyst Component +Catalyst::Script::Create - Create a new Catalyst Component =head1 SYNOPSIS -boyosplace_create.pl [options] model|view|controller name [helper] [options] + myapp_create.pl [options] model|view|controller name [helper] [options] Options: -force don't create a .new file where a file to be created exists @@ -78,16 +62,16 @@ boyosplace_create.pl [options] model|view|controller name [helper] [options] -help display this help and exits Examples: - boyosplace_create.pl controller My::Controller - boyosplace_create.pl controller My::Controller BindLex - boyosplace_create.pl -mechanize controller My::Controller - boyosplace_create.pl view My::View - boyosplace_create.pl view MyView TT - boyosplace_create.pl view TT TT - boyosplace_create.pl model My::Model - boyosplace_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\ + myapp_create.pl controller My::Controller + myapp_create.pl controller My::Controller BindLex + myapp_create.pl -mechanize controller My::Controller + myapp_create.pl view My::View + myapp_create.pl view MyView TT + myapp_create.pl view TT TT + myapp_create.pl model My::Model + myapp_create.pl model SomeDB DBIC::Schema MyApp::Schema create=dynamic\ dbi:SQLite:/tmp/my.db - boyosplace_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\ + myapp_create.pl model AnotherDB DBIC::Schema MyApp::Schema create=static\ dbi:Pg:dbname=foo root 4321 See also: @@ -112,3 +96,4 @@ This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. =cut +