NAME
Dist::Zilla::Plugin::GitHub::Meta - Add GitHub repo info to META.{yml,json}
VERSION
version 0.13
SYNOPSIS
Configure git with your GitHub credentials:
$ git config --global github.user LoginName
$ git config --global github.token GitHubToken
then, in your dist.ini:
[GitHub::Meta]
repo = SomeRepo
DESCRIPTION
This Dist::Zilla plugin adds some information about the distribution's GitHub repository to the META.{yml,json} files, using the official CPAN::Meta specification.
It currently sets the following fields:
homepageThe official home of this project on the web, taken from the GitHub repository info. If the
homepageoption is set to '0' this will be skipped.repositorywebURL pointing to the GitHub page of the project.
urlURL pointing to the GitHub repository (
git://...).typeThis is set to
gitby default.
bugtrackerwebURL pointing to the GitHub issues page of the project. If the
bugsoption is set to '0' or the issues are disabled in the GitHub repository, this will be skipped.
ATTRIBUTES
repo-
The name of the GitHub repository. By default the dist name (from dist.ini) is used.
homepage-
If set to '1' (default), the META homepage field will be set to the value of the homepage field set on the GitHub repository's info.
wiki-
If set to '1' (default '0'), the META homepage field will be set to the URL of the wiki of the GitHub repository, if happens to be activated (see the GitHub repository's
Adminpanel). bugs-
If set to '1' (default), the META bugtracker web field will be set to the issue's page of the repository on GitHub, if happens to be activated (see the GitHub repository's
Adminpanel). fork-
If set to '1' (default), and if the repository is a GitHub fork of another repository, this option will make all the information be taken from the original repository instead of the forked one.
AUTHOR
Alessandro Ghedini <alexbio@cpan.org>
LICENSE AND COPYRIGHT
Copyright 2011 Alessandro Ghedini.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.