NAME
Badge::Depot::Plugin::Kwalitee - Kwalitee badge for Badge::Depot
VERSION
Version 0.0101, released 2016-02-22.
SYNOPSIS
If used standalone:
use Badge::Depot::Plugin::Kwalitee;
my $badge = Badge::Depot::Plugin::Kwalitee->new(dist => 'The-Dist', version => '0.1002');
print $badge->to_html;
# prints:
<a href="http://cpants.cpanauthors.org/dist/The-Dist-0.1002">
<img src="https://badgedepot.code301.com/badge/kwalitee/The-Dist/0.1002" alt="Distribution kwalitee" />
</a>
If used with Pod::Weaver::Section::Badges, in weaver.ini:
[Badges]
; other settings
badge = kwalitee
DESCRIPTION
Creates a Kwalitee badge for a distribution.
This class consumes the Badge::Depot role.
ATTRIBUTES
This badge tries to use distribution meta data to set the attributes. If that is available no attributes need to be set manually. The following checks are made:
If the badge is used via Pod::Weaver::Section::Badges during a Dist::Zilla build, then
version
anddist
are set to the values in the Dist::Zilla object.If there is a
META.json
in the distribution root then that is used to setversion
anddist
.
If neither of those are true, then you should pass dist
and version
to the constructor.
dist
Distribution name. With dashes, not colons.
version
Distribution version.
base_url
Default: https://badgedepot.code301.com
Set this if you wish to use another instance of Badge::Depot::App.
SEE ALSO
SOURCE
https://github.com/Csson/p5-Badge-Depot-Plugin-Kwalitee
HOMEPAGE
https://metacpan.org/release/Badge-Depot-Plugin-Kwalitee
AUTHOR
Erik Carlsson <info@code301.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Erik Carlsson.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.