
MouseX::Getopt::Strict - Only process options with Getopt metaclass

package MyApp;
use Mouse;
with 'MouseX::Getopt::Strict';
has 'data' => (
metaclass => 'Getopt',
is => 'rw',
isa => 'Str',
);

This module is a stricter version of MouseX::Getopt. This module only processes the attributes which set Getopt metaclass explicitly. All other attributes are ignored.

NAKAGAWA Masaki <masaki@cpan.org>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.