X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FScript%2FCreate.pm;h=1308acd7acb166d60756fe93a3ca472c76decb37;hb=f831720babc4818823ec8628dcc1bd032ed8220c;hp=529b8c6db99666ce27547417fe4020839bacaf04;hpb=f4de8c998c61fd442cb9590a3c052cf41b4c0d67;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Script/Create.pm b/lib/Catalyst/Script/Create.pm index 529b8c6..1308acd 100644 --- a/lib/Catalyst/Script/Create.pm +++ b/lib/Catalyst/Script/Create.pm @@ -1,6 +1,5 @@ package Catalyst::Script::Create; use Moose; -use MooseX::Types::Moose qw/Bool Str/; use namespace::autoclean; with 'Catalyst::ScriptRole'; @@ -8,7 +7,7 @@ with 'Catalyst::ScriptRole'; has force => ( traits => [qw(Getopt)], cmd_aliases => 'nonew', - isa => Bool, + isa => 'Bool', is => 'ro', documentation => 'Force new scripts', ); @@ -16,7 +15,7 @@ has force => ( has debug => ( traits => [qw(Getopt)], cmd_aliases => 'd', - isa => Bool, + isa => 'Bool', is => 'ro', documentation => 'Force debug mode', ); @@ -24,13 +23,13 @@ has debug => ( has mechanize => ( traits => [qw(Getopt)], cmd_aliases => 'mech', - isa => Bool, + isa => 'Bool', is => 'ro', documentation => 'use WWW::Mechanize', ); has helper_class => ( - isa => Str, + isa => 'Str', is => 'ro', builder => '_build_helper_class', );