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