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