NAME
MooseX::Getopt::Meta::Attribute - Optional meta attribute for custom option names
SYNOPSIS
package App;
use Moose;
with 'MooseX::Getopt';
has 'data' => (
metaclass => 'MooseX::Getopt::Meta::Attribute',
is => 'ro',
isa => 'Str',
default => 'file.dat',
# tells MooseX::Getopt to use -f as the
# command line flag instead of the normal
# autogenerated one (--data)
cmd_flag => 'f',
);
DESCRIPTION
This is a custom attribute metaclass which can be used to specify a the specific command line flag to use instead of the default one which MooseX::Getopt will create for you.
This is certainly not the prettiest way to go about this, but for now it works for those who might need such a feature.
METHODS
These methods are of little use to most users, they are used interally within MooseX::Getopt.
- cmd_flag
- has_cmd_flag
- 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 AND LICENSE
Copyright 2007 by Infinity Interactive, Inc.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.