Acme-CPANAuthors-GitHub

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

        resources => {
            repository => 'http://github.com/gray/acme-cpanauthors-github',
        },
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'Acme-CPANAuthors-GitHub-*' },
);

my $eumm_version =  do {
    no warnings 'numeric';
    eval $ExtUtils::MakeMaker::VERSION;
};
delete $conf{META_MERGE} if $eumm_version < 6.46;
$conf{PREREQ_PM} = {
    %{ $conf{PREREQ_PM} || {} }, %{ delete $conf{BUILD_REQUIRES} },
} if ($conf{BUILD_REQUIRES} and $eumm_version < 6.5503);

WriteMakefile(%conf);


sub MY::postamble {

lib/Acme/CPANAuthors/GitHub.pm  view on Meta::CPAN

package Acme::CPANAuthors::GitHub;

use strict;
use warnings;
use utf8;

our $VERSION = '0.09';
$VERSION = eval $VERSION;

use Acme::CPANAuthors::Register(
    q(AANARI) => q(Ali Anari),
    q(AAR) => q(Alessandro Ranellucci),
    q(AASSAD) => q(Arnaud "Arhuman" Assad),
    q(ABABLABAB) => q(Ross Hayes),
    q(ABAYLISS) => q(Andrew Bayliss),
    q(ABBYPAN) => q(潘蓝兰),
    q(ABE) => q(Axel Beckert),
    q(ABELTJE) => q(Abe Timmerman),

scripts/generate-github-authors.pl  view on Meta::CPAN


    open my $fh, '>:encoding(utf-8)', $file or die "$file: $!";
    (my $header =<< "    __HEADER__") =~ s/^ +//gm;
        package Acme::CPANAuthors::GitHub;

        use strict;
        use warnings;
        use utf8;

        our \$VERSION = '$VERSION';
        \$VERSION = eval \$VERSION;

        use Acme::CPANAuthors::Register(
    __HEADER__
    print $fh $header;
    for my $pauseid (sort keys %github) {
        printf $fh "    q(%s) => q(%s),\n", $pauseid, $github{$pauseid};
    }
    print $fh <DATA>;
    close $fh;
}

xt/kwalitee.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

eval { require Test::Kwalitee; Test::Kwalitee->import(); 1 } or do {
    plan skip_all => 'Test::Kwalitee not installed; skipping';
};

xt/perlcritic.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

eval { require Test::Perl::Critic; 1 } or do {
    plan skip_all => "Test::Perl::Critic is not installed.";
};
Test::Perl::Critic->import( -profile => 'xt/perlcriticrc' );

all_critic_ok(qw( lib scripts t xt ));

xt/pod.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

eval "use Test::Pod 1.00; 1" or do {
    plan skip_all => 'Test::Pod 1.00 required for testing POD';
};

all_pod_files_ok();

xt/pod_coverage.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

eval "use Test::Pod::Coverage 1.00; 1" or do {
    plan skip_all => 'Test::Pod::Coverage 1.00 is not installed.';
};

all_pod_coverage_ok();

xt/portability_filenames.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

eval "use Test::Portability::Files; 1" or do {
    plan skip_all => 'Test::Portability::Files is not installed.';
};

run_tests();

xt/vars.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

eval "use Test::Vars; 1" or do {
    plan skip_all => 'Test::Vars is not installed.';
};

all_vars_ok();



( run in 1.323 second using v1.01-cache-2.11-cpan-98e64b0badf )