Dist-Zilla-Plugin-Git-Contributors

 view release on metacpan or  search on metacpan

lib/Dist/Zilla/Plugin/Git/Contributors.pm  view on Meta::CPAN

        {
            phase => 'configure',
            type  => 'suggests',
        },
        'JSON::PP' => '2.27300',
    );
}

# should not be called before the MetaProvider phase
has _contributors => (
    is => 'ro', isa => 'ArrayRef[Str]',
    lazy => 1,
    builder => '_build_contributors',
);

sub _build_contributors
{
    my $self = shift;

    # note that ->status does something different.
    return [] if not $self->_git(RUN => 'status');



( run in 0.810 second using v1.01-cache-2.11-cpan-5f2e87ce722 )