Adding MooseX::Getopt first draft
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt / Meta / Attribute.pm
CommitLineData
5dac17c3 1
2package MooseX::Getopt::Meta::Attribute;
3use Moose;
4
5extends 'Moose::Meta::Attribute';
6
7has 'cmd_flag' => (
8 is => 'rw',
9 isa => 'Str',
10 predicate => 'has_cmd_flag',
11);
12
131;
14
15__END__
16
17
18=pod
19
20=head1 NAME
21
22MooseX::Getopt::Meta::Attribute -
23
24=head1 SYNOPSIS
25
26=head1 DESCRIPTION
27
28=head1 METHODS
29
30=over 4
31
32=item B<cmd_flag>
33
34=item B<has_cmd_flag>
35
36=item B<meta>
37
38=back
39
40=head1 BUGS
41
42All complex software has bugs lurking in it, and this module is no
43exception. If you find a bug please either email me, or add the bug
44to cpan-RT.
45
46=head1 AUTHOR
47
48Stevan Little E<lt>stevan@iinteractive.comE<gt>
49
50=head1 COPYRIGHT AND LICENSE
51
52Copyright 2007 by Infinity Interactive, Inc.
53
54L<http://www.iinteractive.com>
55
56This library is free software; you can redistribute it and/or modify
57it under the same terms as Perl itself.
58
59=cut