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