Group
Extension

Matches 1

Dist-Zilla-App-Command-coverh ( C/CS/CSSON/Dist-Zilla-App-Command-coverh-0.0101.tar.gz, CSSON, 2020; MetaCPAN )
Dist-Zilla-App-Command-coverh/lib/Dist/Zilla/App/Command/coverh.pm ( view source; MetaCPAN )
  require JSON::MaybeXS;

    if($opt->{'history'}) {
        $self->show_history;
    }
    else {
        $self->cover;
    }
}

sub show_history {
    my $self = shift;
    my $json = JSON::MaybeXS
->new(pretty => 1);

    my $history_file = path('.coverhistory.json');
    exit if !$history_file->exists;

    my $history = $json->decode($history_file->slurp);
    exit if !scalar @$history;

    
my $self = shift;

    my $json = JSON::MaybeXS->new(pretty => 1);
    local $ENV{'HARNESS_PERL_SWITCHES'} = '-MDevel::Cover';

    my @cover_command = qw/cover -report json/;
    my $zilla = $self->z

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.