summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-20 02:12:28 -0500
committerdoy <doy@tozt.net>2009-04-20 02:12:28 -0500
commit6b136d1475262f79aa4d085557777ae096cb5e4c (patch)
treebb86f55f0679813555dfb0c8c49c477ad1240775 /lib
parenta0d73b52a0c2de2e8c8f13f4d0d2c387fd1c5c49 (diff)
downloadmoosex-nonmoose-6b136d1475262f79aa4d085557777ae096cb5e4c.tar.gz
moosex-nonmoose-6b136d1475262f79aa4d085557777ae096cb5e4c.zip
start stubbing out docs
Diffstat (limited to 'lib')
-rw-r--r--lib/MooseX/NonMoose.pm67
1 files changed, 67 insertions, 0 deletions
diff --git a/lib/MooseX/NonMoose.pm b/lib/MooseX/NonMoose.pm
index ee57c37..3a3f77a 100644
--- a/lib/MooseX/NonMoose.pm
+++ b/lib/MooseX/NonMoose.pm
@@ -2,6 +2,16 @@ package MooseX::NonMoose;
use Moose ();
use Moose::Exporter;
+=head1 NAME
+
+MooseX::NonMoose - easy subclassing of non-Moose classes
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+=cut
+
Moose::Exporter->setup_import_methods;
sub init_meta {
@@ -17,4 +27,61 @@ sub init_meta {
return Class::MOP::class_of($options{for_class});
}
+=head1 AUTHOR
+
+ Jesse Luehrs <doy at tozt dot net>
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 2009 by Jesse Luehrs.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as perl itself.
+
+=head1 TODO
+
+=head1 SEE ALSO
+
+L<Moose>
+
+L<MooseX::Alien>
+
+=head1 BUGS/CAVEATS
+
+No known bugs.
+
+Please report any bugs through RT: email
+C<bug-moosex-nonmoose at rt.cpan.org>, or browse to
+L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MooseX-NonMoose>.
+
+=head1 SUPPORT
+
+You can find this documentation for this module with the perldoc command.
+
+ perldoc MooseX::NonMoose
+
+You can also look for information at:
+
+=over 4
+
+=item * AnnoCPAN: Annotated CPAN documentation
+
+L<http://annocpan.org/dist/MooseX-NonMoose>
+
+=item * CPAN Ratings
+
+L<http://cpanratings.perl.org/d/MooseX-NonMoose>
+
+=item * RT: CPAN's request tracker
+
+L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=MooseX-NonMoose>
+
+=item * Search CPAN
+
+L<http://search.cpan.org/dist/MooseX-NonMoose>
+
+=back
+
+=cut
+
1;