
MouseX::Getopt::Meta::Attribute::NoGetopt - Optional meta attribute for ignoring params

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

This module is a custom attribute metaclass for suppressing MouseX::Getopt's process to a specific attribute.

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.