refactor in progress, beware (still passing all my tests though :P)
[gitmo/Moose.git] / lib / Moose / Meta / Role / Application / ToClass.pm
1 package Moose::Meta::Role::Application::ToClass;
2
3 use strict;
4 use warnings;
5 use metaclass;
6
7 use Carp            'confess';
8 use Scalar::Util    'blessed';
9
10 use Data::Dumper;
11
12 our $VERSION   = '0.01';
13 our $AUTHORITY = 'cpan:STEVAN';
14
15 use base 'Moose::Meta::Role::Application';
16
17 1;
18
19 __END__
20
21 =pod
22
23 =head1 NAME
24
25 Moose::Meta::Role::Application::ToClass
26
27 =head1 DESCRIPTION
28
29 =head2 METHODS
30
31 =over 4
32
33 =item B<new>
34
35 =item B<meta>
36
37 =back
38
39 =head1 BUGS
40
41 All complex software has bugs lurking in it, and this module is no
42 exception. If you find a bug please either email me, or add the bug
43 to cpan-RT.
44
45 =head1 AUTHOR
46
47 Stevan Little E<lt>stevan@iinteractive.comE<gt>
48
49 =head1 COPYRIGHT AND LICENSE
50
51 Copyright 2006, 2007 by Infinity Interactive, Inc.
52
53 L<http://www.iinteractive.com>
54
55 This library is free software; you can redistribute it and/or modify
56 it under the same terms as Perl itself.
57
58 =cut
59