Convert to Dist::Zilla
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt / Strict.pm
index 9b3efac..8241b14 100644 (file)
@@ -1,5 +1,6 @@
-
 package MooseX::Getopt::Strict;
+# ABSTRACT: only make options for attrs with the Getopt metaclass
+
 use Moose::Role;
 
 with 'MooseX::Getopt';
@@ -12,49 +13,14 @@ around '_compute_getopt_attrs' => sub {
     } $class->$next(@args);
 };
 
-1;
-
-__END__
-
-=pod
+no Moose::Role;
 
-=head1 NAME
+1;
 
-MooseX::Getopt::Strict - only make options for attrs with the Getopt metaclass
-    
 =head1 DESCRIPTION
 
-This is an stricter version of C<MooseX::Getopt> which only processes the 
+This is an stricter version of C<MooseX::Getopt> which only processes the
 attributes if they explicitly set as C<Getopt> attributes. All other attributes
 are ignored by the command line handler.
-    
-=head1 METHODS
-
-=over 4
-
-=item meta
-
-=back
-
-=head1 BUGS
-
-All complex software has bugs lurking in it, and this module is no 
-exception. If you find a bug please either email me, or add the bug
-to cpan-RT.
-
-=head1 AUTHOR
-
-Stevan Little E<lt>stevan@iinteractive.comE<gt>
-
-Yuval Kogman  C<< <nuffin@cpan.org> >>
-
-=head1 COPYRIGHT AND LICENSE
-
-Copyright 2007-2008 by Infinity Interactive, Inc.
-
-L<http://www.iinteractive.com>
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
 
 =cut