MooseX::Getopt::Meta::Attribute::Trait::NoGetopt.3pm

Langue: en

Autres versions - même langue

Version: 2008-06-30 (fedora - 05/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

MooseX::Getopt::Meta::Attribute::Trait::NoGetopt - Optional meta attribute trait for ignoring params

SYNOPSIS

   package App;
   use Moose;
   
   with 'MooseX::Getopt';
   
   has 'data' => (
       traits  => [ 'NoGetopt' ],  # do not attempt to capture this param  
       is      => 'ro',
       isa     => 'Str',
       default => 'file.dat',
   );
 
 

DESCRIPTION

This is a custom attribute metaclass trait which can be used to specify that a specific attribute should not be processed by "MooseX::Getopt". All you need to do is specify the "NoGetopt" metaclass trait.
   has 'foo' => (traits => [ 'NoGetopt', ... ], ... );
 
 

METHODS

meta

BUGS

All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.

AUTHOR

Stevan Little <stevan@iinteractive.com> Copyright 2007-2008 by Infinity Interactive, Inc.

<http://www.iinteractive.com>

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