uploadin
[gitmo/Moose.git] / lib / Moose / Meta / Class.pm
1
2 package Moose::Meta::Class;
3
4 use strict;
5 use warnings;
6
7 our $VERSION = '0.01';
8
9 use base 'Class::MOP::Class';
10
11 1;
12
13 __END__
14
15 =pod
16
17 =head1 NAME
18
19 Moose::Meta::Class - 
20
21 =head1 SYNOPSIS
22
23 =head1 DESCRIPTION
24
25 =head1 METHODS
26
27 =over 4
28
29 =back
30
31 =head1 BUGS
32
33 All complex software has bugs lurking in it, and this module is no 
34 exception. If you find a bug please either email me, or add the bug
35 to cpan-RT.
36
37 =head1 CODE COVERAGE
38
39 I use L<Devel::Cover> to test the code coverage of my tests, below is the 
40 L<Devel::Cover> report on this module's test suite.
41
42 =head1 ACKNOWLEDGEMENTS
43
44 =head1 AUTHOR
45
46 Stevan Little E<lt>stevan@iinteractive.comE<gt>
47
48 =head1 COPYRIGHT AND LICENSE
49
50 Copyright 2006 by Infinity Interactive, Inc.
51
52 L<http://www.iinteractive.com>
53
54 This library is free software; you can redistribute it and/or modify
55 it under the same terms as Perl itself. 
56
57 =cut