Fix duplicate short options issue
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / Create.pm
index 2ff4d58..47965a6 100644 (file)
@@ -1,44 +1,57 @@
 package Catalyst::Script::Create;
 use Moose;
-use Getopt::Long;
-use Pod::Usage;
 use Catalyst::Helper;
-use MooseX::Types::Moose qw/Str/;
+use MooseX::Types::Moose qw/Bool/;
 use namespace::autoclean;
 
-has app => (isa => Str, is => 'ro', required => 1);
-
-sub new_with_options { shift->new(@_) }
+with 'Catalyst::ScriptRole';
+
+has '+help' => (cmd_aliases => 'h');
+
+has force => (
+    traits => [qw(Getopt)],
+    cmd_aliases => 'nonew',
+    isa => Bool,
+    is => 'ro',
+    documentation => 'Force new scripts',
+);
+
+has debug => (
+    traits => [qw(Getopt)],
+    cmd_aliases => 'd',
+    isa => Bool,
+    is => 'ro',
+    documentation => 'Force debug mode',
+);
+
+has mechanize => (
+    traits => [qw(Getopt)],
+    cmd_aliases => 'mech',
+    isa => Bool,
+    is => 'ro',
+    documentation => 'use WWW::Mechanize',
+);
 
 sub run {
     my ($self) = @_;
-my $force = 0;
-my $mech  = 0;
-my $help  = 0;
-
-GetOptions(
-    'nonew|force'    => \$force,
-    'mech|mechanize' => \$mech,
-    'help|?'         => \$help
- );
 
-pod2usage(1) if ( $help || !$ARGV[0] );
+    $self->_exit_with_usage if !$ARGV[0];
 
-my $helper = Catalyst::Helper->new( { '.newfiles' => !$force, mech => $mech } );
+    my $helper = Catalyst::Helper->new( { '.newfiles' => !$self->force, mech => $self->mech } );
 
-pod2usage(1) unless $helper->mk_component( $self->app, @ARGV );
+    $self->_display_help unless $helper->mk_component( $self->app, @ARGV );
 
 }
 
-1;
+__PACKAGE__->meta->make_immutable;
 
 =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
@@ -46,16 +59,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:
@@ -80,3 +93,4 @@ This library is free software, you can redistribute it and/or modify
 it under the same terms as Perl itself.
 
 =cut
+