NAME

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

SYNOPSIS

package MyApp;
use Mouse;

with 'MouseX::Getopt';

has 'data' => (
    metaclass => 'NoGetopt',
    is        => 'rw',
    isa       => 'Str',
);

DESCRIPTION

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

AUTHOR

NAKAGAWA Masaki <masaki@cpan.org>

LICENSE

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