Dist::Zilla Still Stuck on Bugs
It is the big bug round up day here at the Dist-Pen
In my last post I had a look at the [Bugs] section plug-in for Pod::Weaver, following along that line I am going to look at a three similar ones;
All are just a variation on the [Bugs] plug-in and none of them have the 'header' attribute. I will give you the .25$ trour;
BugsAndLimitations
This plugin requires that you enter the 'bugtracker' key-value pairs under the 'resources' meta key and you can do that by either using the [Bugtracker] or the [MetaResources] to set these values up for you. With my present 'dist.ini' it will produce the following output
=head1 BUGS AND LIMITATIONS
You can make new bug reports, and view existing ones, through the
web interface at L<https://github.com/byterock/database-accessor/issues>
…
as you can see it does not care about the email address.
BugsRT
This plug-in gives only the default 'rt' bug info. It does not need or care about any meta-data settings.t produces the following for my distribution;
=head1 BUGS
Please report any bugs or feature requests to database-accessor@rt.cpan.org or through the web interface at: http://rt.cpan.org/Public/Dist/Display.html?Name=Database-Accessor
Quick and easy to use but no links in the blurb.
Bugs::DefaultRT
Like [BugsRt] there is no need to enter the [Bugtracker] keys but you can if you like. The calling signature from your 'weaver.ini' is a little different than the others [Bugs::DefaultRT]. With my present distribution it produces
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website L<https://github.com/byterock/database-accessor/issues> or by email to L<mailto:$test@test.com>.
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
So there is the post-ette for today, lots of differing flavours for your bug reporting enjoyment.
Leave a comment