Satisfy POD coverage :[
[gitmo/MooseX-AttributeHelpers.git] / lib / MooseX / AttributeHelpers / Counter.pm
1
2 package MooseX::AttributeHelpers::Counter;
3 use Moose;
4
5 our $VERSION   = '0.19';
6 $VERSION = eval $VERSION;
7 our $AUTHORITY = 'cpan:STEVAN';
8
9 extends 'Moose::Meta::Attribute';
10 with 'MooseX::AttributeHelpers::Trait::Counter';
11
12 no Moose;
13
14 # register the alias ...
15 package # hide me from search.cpan.org
16     Moose::Meta::Attribute::Custom::Counter;
17 sub register_implementation { 'MooseX::AttributeHelpers::Counter' }
18
19 1;
20
21 __END__
22
23 =pod
24
25 =head1 NAME
26
27 MooseX::AttributeHelpers::Counter
28
29 =head1 METHODS
30
31 =over 4
32
33 =item B<meta>
34
35 =item B<method_provider>
36
37 =item B<has_method_provider>
38
39 =item B<helper_type>
40
41 =item B<process_options_for_provides>
42
43 Run before its superclass method.
44
45 =item B<check_provides_values>
46
47 Run after its superclass method.
48
49 =back
50
51 =head1 BUGS
52
53 All complex software has bugs lurking in it, and this module is no
54 exception. If you find a bug please either email me, or add the bug
55 to cpan-RT.
56
57 =head1 AUTHOR
58
59 Stevan Little E<lt>stevan@iinteractive.comE<gt>
60
61 =head1 COPYRIGHT AND LICENSE
62
63 Copyright 2007-2009 by Infinity Interactive, Inc.
64
65 L<http://www.iinteractive.com>
66
67 This library is free software; you can redistribute it and/or modify
68 it under the same terms as Perl itself.
69
70 =cut
71