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