Version 0.27.
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt / Meta / Attribute / NoGetopt.pm
index 88f36e6..020b620 100644 (file)
@@ -2,15 +2,17 @@
 package MooseX::Getopt::Meta::Attribute::NoGetopt;
 use Moose;
 
-our $VERSION   = '0.01';
+our $VERSION   = '0.27';
 our $AUTHORITY = 'cpan:STEVAN';
 
 extends 'Moose::Meta::Attribute'; # << Moose extending Moose :)
+   with 'MooseX::Getopt::Meta::Attribute::Trait::NoGetopt';
 
 no Moose;
 
 # register this as a metaclass alias ...
-package Moose::Meta::Attribute::Custom::NoGetopt;
+package # stop confusing PAUSE
+    Moose::Meta::Attribute::Custom::NoGetopt;
 sub register_implementation { 'MooseX::Getopt::Meta::Attribute::NoGetopt' }
 
 1;
@@ -21,7 +23,7 @@ __END__
 
 =head1 NAME
 
-MooseX::Getopt::Meta::Attribute::NoGetOpt - Optional meta attribute for ignoring params
+MooseX::Getopt::Meta::Attribute::NoGetopt - Optional meta attribute for ignoring params
 
 =head1 SYNOPSIS
 
@@ -31,7 +33,7 @@ MooseX::Getopt::Meta::Attribute::NoGetOpt - Optional meta attribute for ignoring
   with 'MooseX::Getopt';
   
   has 'data' => (
-      metaclass => 'NoGetOpt',  # do not attempt to capture this param  
+      metaclass => 'NoGetopt',  # do not attempt to capture this param  
       is        => 'ro',
       isa       => 'Str',
       default   => 'file.dat',
@@ -41,7 +43,7 @@ MooseX::Getopt::Meta::Attribute::NoGetOpt - Optional meta attribute for ignoring
 
 This is a custom attribute metaclass which can be used to specify 
 that a specific attribute should B<not> be processed by 
-C<MooseX::Getopt>. All you need to do is specify the C<NoGetOpt> 
+C<MooseX::Getopt>. All you need to do is specify the C<NoGetopt> 
 metaclass.
 
   has 'foo' => (metaclass => 'NoGetopt', ... );
@@ -68,7 +70,7 @@ Chris Prather  C<< <perigrin@cpan.org> >>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2007 by Infinity Interactive, Inc.
+Copyright 2007-2008 by Infinity Interactive, Inc.
 
 L<http://www.iinteractive.com>