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