no-getopt stuff
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt / Strict.pm
CommitLineData
bff3807b 1
2package MooseX::Getopt::Strict;
3use Moose::Role;
4
f969917f 5with 'MooseX::Getopt';
bff3807b 6
7sub _compute_getopt_attrs {
8 my ( $class, @args ) = @_;
f969917f 9 grep {
10 $_->isa("MooseX::Getopt::Meta::Attribute")
11 } $class->MooseX::Getopt::_compute_getopt_attrs(@args);
bff3807b 12}
13
14__PACKAGE__;
15
16__END__
17
18=pod
19
20=head1 NAME
21
22MooseX::Getopt::Strict - only make options for attrs with the Getopt metaclass
23
24=head1 SYNOPSIS
25
26 # see MooseX::Getopt
27
28=over 4
29
30=item meta
31
32Is a section devoted to making the #!#%^ stupid pod coverage test pass. Stevan, I do
33hope you're actually reading this.
34
35Love,
36Yuval
37
38=back
39
40=cut