bump version to 1.09
[gitmo/Moose.git] / lib / Moose / Meta / Role / Method.pm
CommitLineData
39b3bc94 1
2package Moose::Meta::Role::Method;
3
4use strict;
5use warnings;
6
60f08160 7our $VERSION = '1.09';
75b95414 8$VERSION = eval $VERSION;
d44714be 9our $AUTHORITY = 'cpan:STEVAN';
39b3bc94 10
fbdb609d 11use base 'Moose::Meta::Method';
39b3bc94 12
131;
14
15__END__
16
17=pod
18
19=head1 NAME
20
ecb59493 21Moose::Meta::Role::Method - A Moose Method metaclass for Roles
39b3bc94 22
23=head1 DESCRIPTION
24
d03bd989 25This is primarily used to mark methods coming from a role
ecb59493 26as being different. Right now it is nothing but a subclass
5cf3cd62 27of L<Moose::Meta::Method>.
39b3bc94 28
29=head1 BUGS
30
d4048ef3 31See L<Moose/BUGS> for details on reporting bugs.
39b3bc94 32
33=head1 AUTHOR
34
35Stevan Little E<lt>stevan@iinteractive.comE<gt>
36
39b3bc94 37=head1 COPYRIGHT AND LICENSE
38
7e0492d3 39Copyright 2006-2010 by Infinity Interactive, Inc.
39b3bc94 40
41L<http://www.iinteractive.com>
42
43This library is free software; you can redistribute it and/or modify
44it under the same terms as Perl itself.
45
07b0f1a5 46=cut