Adding MooseX::Getopt first draft
[gitmo/MooseX-Getopt.git] / lib / MooseX / Getopt / Meta / Attribute.pm
1
2 package MooseX::Getopt::Meta::Attribute;
3 use Moose;
4
5 extends 'Moose::Meta::Attribute';
6
7 has 'cmd_flag' => (
8     is        => 'rw',
9     isa       => 'Str',
10     predicate => 'has_cmd_flag',
11 );
12
13 1;
14
15 __END__
16
17
18 =pod
19
20 =head1 NAME
21
22 MooseX::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
42 All complex software has bugs lurking in it, and this module is no 
43 exception. If you find a bug please either email me, or add the bug
44 to cpan-RT.
45
46 =head1 AUTHOR
47
48 Stevan Little E<lt>stevan@iinteractive.comE<gt>
49
50 =head1 COPYRIGHT AND LICENSE
51
52 Copyright 2007 by Infinity Interactive, Inc.
53
54 L<http://www.iinteractive.com>
55
56 This library is free software; you can redistribute it and/or modify
57 it under the same terms as Perl itself.
58
59 =cut