fix all examples to use handles; fix links to be to traits
[gitmo/Moose.git] / lib / Moose / AttributeHelpers / Counter.pm
CommitLineData
e3c07b19 1
2package Moose::AttributeHelpers::Counter;
3use Moose;
4
dbd46676 5our $VERSION = '0.83';
e3c07b19 6$VERSION = eval $VERSION;
7our $AUTHORITY = 'cpan:STEVAN';
8
9extends 'Moose::Meta::Attribute';
10with 'Moose::AttributeHelpers::Trait::Counter';
11
12no Moose;
13
14# register the alias ...
15package # hide me from search.cpan.org
16 Moose::Meta::Attribute::Custom::Counter;
17sub register_implementation { 'Moose::AttributeHelpers::Counter' }
18
191;
20
21__END__
22
23=pod
24
25=head1 NAME
26
27Moose::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
25d86888 41=item B<process_options_for_handles>
e3c07b19 42
43Run before its superclass method.
44
25d86888 45=item B<check_handles_values>
e3c07b19 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