Bump to 0.56
[gitmo/Moose.git] / lib / Moose / Meta / Role / Method / Required.pm
1
2 package Moose::Meta::Role::Method::Required;
3
4 use strict;
5 use warnings;
6
7 our $VERSION   = '0.56';
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base 'Moose::Meta::Role::Method';
11
12 1;
13
14 __END__
15
16 =pod
17
18 =head1 NAME
19
20 Moose::Meta::Role::Method::Required - A Moose metaclass for required methods in Roles
21
22 =head1 DESCRIPTION
23
24 =head1 BUGS
25
26 All complex software has bugs lurking in it, and this module is no 
27 exception. If you find a bug please either email me, or add the bug
28 to cpan-RT.
29
30 =head1 AUTHOR
31
32 Stevan Little E<lt>stevan@iinteractive.comE<gt>
33
34 =head1 COPYRIGHT AND LICENSE
35
36 Copyright 2006-2008 by Infinity Interactive, Inc.
37
38 L<http://www.iinteractive.com>
39
40 This library is free software; you can redistribute it and/or modify
41 it under the same terms as Perl itself.
42
43 =cut