NAME
Module::Install::GithubMeta - A Module::Install extension to include GitHub meta information in META.yml
SYNOPSIS
# In Makefile.PL
use inc::Module::Install;
githubmeta;
The repository and homepage meta in META.yml will be set accordingly.
DESCRIPTION
Module::Install::GithubMeta is a Module::Install extension to include GitHub http://github.com meta information in META.yml.
It automatically detects if the distribution directory is under git version control and whether the origin is a GitHub repository and will set the repository and homepage meta in META.yml to the appropriate URLs for GitHub.
COMMANDS
This plugin adds the following Module::Install command:
githubmeta- 
Does nothing on the user-side. On the author-side it will auto-detect if the directory is under
gitversion control and whether theoriginis a GitHub repository. Will setrepositoryto the public clone URL andhomepageto the http GitHub link for the repository.You may optionally provide the remote to query, this defaults to
originif not specified.You may override the
homepagesetting by using the Module::Installhomepagecommand prior to calling this command.use inc::Module::Install; homepage 'http://mymoduleshomepage.com/'; githubmeta; 
AUTHOR
Chris BinGOs Williams
Based on code from Module::Install::Repository by Tatsuhiko Miyagawa
LICENSE
Copyright © Chris Williams and Tatsuhiko Miyagawa
This module may be used, modified, and distributed under the same terms as Perl itself. Please see the license that came with your Perl distribution for details.