NAKAGAWA Masaki > MouseX-Getopt-0.06 > MouseX::Getopt::Meta::Attribute::NoGetopt

Download:
MouseX-Getopt-0.06.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Source   Latest Release: MouseX-Getopt-0.2201

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.