ARGV and extra_argv should be nogetopt 0_10
Yuval Kogman [Tue, 22 Jan 2008 14:27:21 +0000 (14:27 +0000)]
lib/MooseX/Getopt.pm

index 1f40e00..ea7642c 100644 (file)
@@ -12,8 +12,8 @@ use constant HAVE_GLD => not not eval { require Getopt::Long::Descriptive };
 our $VERSION   = '0.09';
 our $AUTHORITY = 'cpan:STEVAN';
 
-has ARGV       => (is => 'rw', isa => 'ArrayRef', documentation => "hidden");
-has extra_argv => (is => 'rw', isa => 'ArrayRef', documentation => "hidden");
+has ARGV       => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt");
+has extra_argv => (is => 'rw', isa => 'ArrayRef', metaclass => "NoGetopt");
 
 sub new_with_options {
     my ($class, @params) = @_;