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