package MooseX::Getopt::Strict; BEGIN { $MooseX::Getopt::Strict::AUTHORITY = 'cpan:STEVAN'; } { $MooseX::Getopt::Strict::VERSION = '0.39'; } # ABSTRACT: only make options for attrs with the Getopt metaclass use Moose::Role; with 'MooseX::Getopt'; around '_compute_getopt_attrs' => sub { my $next = shift; my ( $class, @args ) = @_; grep { $_->does("MooseX::Getopt::Meta::Attribute::Trait") } $class->$next(@args); }; no Moose::Role; 1; __END__ =pod =encoding utf-8 =head1 NAME MooseX::Getopt::Strict - only make options for attrs with the Getopt metaclass =head1 DESCRIPTION This is an stricter version of C which only processes the attributes if they explicitly set as C attributes. All other attributes are ignored by the command line handler. =head1 AUTHORS =over 4 =item * Stevan Little =item * Brandon L. Black =item * Yuval Kogman =item * Ryan D Johnson =item * Drew Taylor =item * Tomas Doran =item * Florian Ragwitz =item * Dagfinn Ilmari Mannsåker =item * Ævar Arnfjörð Bjarmason =item * Chris Prather =item * Karen Etheridge =item * Jonathan Swartz =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2012 by Infinity Interactive, Inc. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut