The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Dist::Zilla::Plugin::Git::Contributors - Add contributor names from git to your distribution

VERSION

version 0.010

SYNOPSIS

In your dist.ini:

    [Git::Contributors]

DESCRIPTION

This is a Dist::Zilla plugin that extracts all names and email addresses from git commits in your repository and adds them to the distribution metadata under the x_contributors key. It takes a minimalist approach to this -- no data is stuffed into other locations, including stashes -- if other plugins wish to work with this information, they should extract it from the distribution metadata.

CONFIGURATION OPTIONS

include_authors

When true, authors (as defined by the preamble section in your dist.ini) are added to the list of contributors. When false, authors are filtered out of the list of contributors. Defaults to false.

include_releaser

Defaults to true; set to false to remove the current user (who is doing the distribution release) from the contributors list. It is applied after include_authors, so you will be removed from the list even if you are (one of the) distribution author(s) and include_authors = 1.

You probably don't want this option -- it was added experimentally to change how contributors are displayed on http://metacpan.org, but it was decided that this should be managed at a different layer than the metadata.

order_by

When order_by = name, contributors are sorted alphabetically (ascending); when order_by = commits, contributors are sorted by number of commits made to the repository (descending). The default value is name.

path

Indicates a path, relative to the repository root, to search for commits in. Technically: "Consider only commits that are enough to explain how the files that match the specified paths came to be." Defaults to the repository root. Can be used more than once. You should almost certainly not need this.

CANONICALIZING NAMES AND ADDRESSES

If you or a contributor uses multiple names and/or email addresses to make commits and would like them mapped to a canonical value (e.g. their cpan.org address), you can do this by adding a .mailmap file to your git repository, with entries formatted as described in "MAPPING AUTHORS" in git help shortlog (https://www.kernel.org/pub/software/scm/git/docs/git-shortlog.html).

ADDING CONTRIBUTORS TO POD DOCUMENTATION

You can add the contributor names to your module documentation by using Pod::Weaver in conjunction with Pod::Weaver::Section::Contributors.

UNICODE SUPPORT

This module aims to properly handle non-ascii characters in contributor names. However, on Windows you might need to do a bit more: see https://github.com/msysgit/msysgit/wiki/Git-for-Windows-Unicode-Support for supported versions and extra configurations you may need to apply.

SUPPORT

Bugs may be submitted through the RT bug tracker (or bug-Dist-Zilla-Plugin-Git-Contributors@rt.cpan.org). I am also usually active on irc, as 'ether' at irc.perl.org.

SEE ALSO

AUTHOR

Karen Etheridge <ether@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Karen Etheridge.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

CONTRIBUTOR

Kent Fredric <kentnl@cpan.org>