summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-06-15 01:36:37 -0500
committerJesse Luehrs <doy@tozt.net>2010-06-15 01:36:37 -0500
commit60c5f48aff6a579ce22bd4b4245f7be346609901 (patch)
tree7025b94a0470cef60d9c3694d0dbf247f5b30aaa /lib
parent571bfa3b91ff5567338948776b6fce84d3ede09e (diff)
downloadmoosex-nonmoose-60c5f48aff6a579ce22bd4b4245f7be346609901.tar.gz
moosex-nonmoose-60c5f48aff6a579ce22bd4b4245f7be346609901.zip
convert to new dzil stuff
Diffstat (limited to 'lib')
-rw-r--r--lib/MooseX/NonMoose.pm52
-rw-r--r--lib/MooseX/NonMoose/InsideOut.pm18
-rw-r--r--lib/MooseX/NonMoose/Meta/Role/Class.pm18
-rw-r--r--lib/MooseX/NonMoose/Meta/Role/Constructor.pm18
4 files changed, 9 insertions, 97 deletions
diff --git a/lib/MooseX/NonMoose.pm b/lib/MooseX/NonMoose.pm
index a05ca30..cd14526 100644
--- a/lib/MooseX/NonMoose.pm
+++ b/lib/MooseX/NonMoose.pm
@@ -1,9 +1,6 @@
package MooseX::NonMoose;
use Moose::Exporter;
-
-=head1 NAME
-
-MooseX::NonMoose - easy subclassing of non-Moose classes
+# ABSTRACT: easy subclassing of non-Moose classes
=head1 SYNOPSIS
@@ -89,7 +86,7 @@ sub init_meta {
=back
-=head1 BUGS/CAVEATS
+=head1 CAVEATS
=over 4
@@ -112,56 +109,19 @@ in the future.
=back
-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 SEE ALSO
-L<Moose::Cookbook::FAQ/How do I make non-Moose constructors work with Moose?>
-
-L<MooseX::Alien> - serves the same purpose, but with a radically different (and
-far more hackish) implementation.
-
-=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 * L<Moose::Cookbook::FAQ/How do I make non-Moose constructors work with Moose?>
-=item * CPAN Ratings
+=item * L<MooseX::Alien>
-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>
+serves the same purpose, but with a radically different (and far more hackish)
+implementation.
=back
-=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.
-
=cut
1;
diff --git a/lib/MooseX/NonMoose/InsideOut.pm b/lib/MooseX/NonMoose/InsideOut.pm
index 58bdcbd..8946003 100644
--- a/lib/MooseX/NonMoose/InsideOut.pm
+++ b/lib/MooseX/NonMoose/InsideOut.pm
@@ -1,9 +1,6 @@
package MooseX::NonMoose::InsideOut;
use Moose::Exporter;
-
-=head1 NAME
-
-MooseX::NonMoose::InsideOut - easy subclassing of non-Moose non-hashref classes
+# ABSTRACT: easy subclassing of non-Moose non-hashref classes
=head1 SYNOPSIS
@@ -51,17 +48,4 @@ sub init_meta {
$package->$init_meta(@_);
}
-=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.
-
-=cut
-
1;
diff --git a/lib/MooseX/NonMoose/Meta/Role/Class.pm b/lib/MooseX/NonMoose/Meta/Role/Class.pm
index cc7275e..1b90c7d 100644
--- a/lib/MooseX/NonMoose/Meta/Role/Class.pm
+++ b/lib/MooseX/NonMoose/Meta/Role/Class.pm
@@ -1,10 +1,7 @@
package MooseX::NonMoose::Meta::Role::Class;
use Moose::Role;
use List::MoreUtils qw(any);
-
-=head1 NAME
-
-MooseX::NonMoose::Meta::Role::Class - metaclass trait for L<MooseX::NonMoose>
+# ABSTRACT: metaclass trait for L<MooseX::NonMoose>
=head1 SYNOPSIS
@@ -234,17 +231,4 @@ around superclasses => sub {
no Moose::Role;
-=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.
-
-=cut
-
1;
diff --git a/lib/MooseX/NonMoose/Meta/Role/Constructor.pm b/lib/MooseX/NonMoose/Meta/Role/Constructor.pm
index 50ddec6..38c70f0 100644
--- a/lib/MooseX/NonMoose/Meta/Role/Constructor.pm
+++ b/lib/MooseX/NonMoose/Meta/Role/Constructor.pm
@@ -1,9 +1,6 @@
package MooseX::NonMoose::Meta::Role::Constructor;
use Moose::Role;
-
-=head1 NAME
-
-MooseX::NonMoose::Meta::Role::Constructor - constructor method trait for L<MooseX::NonMoose>
+# ABSTRACT: constructor method trait for L<MooseX::NonMoose>
=head1 SYNOPSIS
@@ -79,17 +76,4 @@ sub _generate_instance {
no Moose::Role;
-=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.
-
-=cut
-
1;