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