Class-MOP = bunch of moving stuff around
[gitmo/Class-MOP.git] / lib / Class / MOP / Method.pm
1
2 package Class::MOP::Method;
3
4 use strict;
5 use warnings;
6
7 our $VERSION = '0.01';
8  
9 1;
10
11 __END__
12
13 =pod
14
15 =head1 NAME 
16
17 Class::MOP::Method - Method Meta Object
18
19 =head1 SYNOPSIS
20
21 =head1 DESCRIPTION
22
23 The Method Protocol is very small, since methods in Perl 5 are just 
24 subroutines within the particular package. Basically all we do is to 
25 bless the subroutine and provide some very simple introspection 
26 methods for it.
27
28 =head1 AUTHOR
29
30 Stevan Little E<gt>stevan@iinteractive.comE<lt>
31
32 =head1 COPYRIGHT AND LICENSE
33
34 Copyright 2006 by Infinity Interactive, Inc.
35
36 L<http://www.iinteractive.com>
37
38 This library is free software; you can redistribute it and/or modify
39 it under the same terms as Perl itself. 
40
41 =cut