package MooseX::Getopt::Meta::Attribute;
use Moose;
+use Moose::Util::TypeConstraints;
our $VERSION = '0.01';
our $AUTHORITY = 'cpan:STEVAN';
predicate => 'has_cmd_flag',
);
+# This subtype is to support scalar -> arrayref coercion
+# without polluting the built-in types
+subtype '_MooseX_Getopt_CmdAliases'
+ => as 'ArrayRef'
+ => where { 1 };
+coerce '_MooseX_Getopt_CmdAliases'
+ => from 'Value'
+ => via { [$_] };
+
has 'cmd_aliases' => (
is => 'rw',
- isa => 'ArrayRef',
+ isa => '_MooseX_Getopt_CmdAliases',
predicate => 'has_cmd_aliases',
+ coerce => 1,
);
no Moose; 1;
is => 'ro',
isa => 'Str',
default => 'file.dat',
+
# tells MooseX::Getopt to use --somedata as the
# command line flag instead of the normal
# autogenerated one (--data)
cmd_flag => 'somedata',
+
# tells MooseX::Getopt to also allow --moosedata,
# -m, and -d as aliases for this same option on
# the commandline.
cmd_aliases => [qw/ moosedata m d /],
+
+ # Or, you can use a plain scalar for a single alias:
+ cmd_aliases => 'm',
);
=head1 DESCRIPTION