From: Torsten Raudssus Date: Mon, 4 Mar 2013 14:05:28 +0000 (+0100) Subject: added more meta resources and added more support relevant links into the POD document... X-Git-Tag: v1.001000~19 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=072d158f9aa281b39c25641923f19c896cac2d80;p=gitmo%2FMoo.git added more meta resources and added more support relevant links into the POD documentation --- diff --git a/Changes b/Changes index 789fe25..25e8ba0 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ + - added more meta resources and added more support relevant links into + the POD documentation - clarify in docs that default and built values won't call triggers (RT#82310) - expand is => 'lazy' doc to make it clear that you can make rw lazy diff --git a/Makefile.PL b/Makefile.PL index 0bd9d9a..48c1f08 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,7 +23,10 @@ my $mymeta = do { no warnings; $ExtUtils::MakeMaker::VERSION >= 6.5702 }; my %extra_info = ( resources => { - repository => 'git://git.shadowcat.co.uk/gitmo/Moo.git' + repository => 'git://git.shadowcat.co.uk/gitmo/Moo.git', + IRC => 'irc://irc.perl.org/#moose', + bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Moo', + license => 'http://dev.perl.org/licenses/', } ); diff --git a/lib/Moo.pm b/lib/Moo.pm index 9ae0141..a057954 100644 --- a/lib/Moo.pm +++ b/lib/Moo.pm @@ -779,9 +779,15 @@ to Moo by providing a more Moose-like interface. =head1 SUPPORT -Users' IRC: #moose on irc.perl.org +Users' IRC: #moose on irc.perl.org L -Development and contribution IRC: #web-simple on irc.perl.org +Development and contribution IRC: #web-simple on irc.perl.org L + +Bugtracker: L + +Git repository: L + +Git web access: L =head1 AUTHOR @@ -825,6 +831,6 @@ as listed above. =head1 LICENSE This library is free software and may be distributed under the same terms -as perl itself. +as perl itself. See L. =cut diff --git a/lib/Moo/Role.pm b/lib/Moo/Role.pm index 6d1b96a..0fc16b8 100644 --- a/lib/Moo/Role.pm +++ b/lib/Moo/Role.pm @@ -339,6 +339,10 @@ imported by this module. Declares an attribute for the class to be composed into. See L for all options. +=head1 SUPPORT + +See L for support and contact informations. + =head1 AUTHORS See L for authors. @@ -346,5 +350,3 @@ See L for authors. =head1 COPYRIGHT AND LICENSE See L for the copyright and license. - -=cut diff --git a/lib/Sub/Defer.pm b/lib/Sub/Defer.pm index 9eb4873..2ec26a1 100644 --- a/lib/Sub/Defer.pm +++ b/lib/Sub/Defer.pm @@ -90,3 +90,15 @@ If the passed coderef has been L this will "undefer" it. If the passed coderef has not been deferred, this will just return it. If this is confusing, take a look at the example in the L. + +=head1 SUPPORT + +See L for support and contact informations. + +=head1 AUTHORS + +See L for authors. + +=head1 COPYRIGHT AND LICENSE + +See L for the copyright and license. diff --git a/lib/Sub/Quote.pm b/lib/Sub/Quote.pm index d067e2a..37997d2 100644 --- a/lib/Sub/Quote.pm +++ b/lib/Sub/Quote.pm @@ -251,3 +251,15 @@ It might turn up in the intended context as follows: Which will obviously return from foo, when all you meant to do was return from the code context in quote_sub and proceed with running important code b. + +=head1 SUPPORT + +See L for support and contact informations. + +=head1 AUTHORS + +See L for authors. + +=head1 COPYRIGHT AND LICENSE + +See L for the copyright and license.