Acme-CPANModules-OrganizingCPAN

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

    Acme::CPANAuthors::* modules contains lists of CPAN author ID's, grouped
    by some criteria.

    CPANModules

    Acme::CPANModules::* modules contains lists of CPAN modules (or
    scripts), grouped by some criteria.

    Map of CPAN

    The Map of CPAN project, <https://mapofcpan.org>, visualizes modules on
    CPAN as a map, with top namespaces with lots of modules under them
    appearing as islands while less popular namespaces are shown in the
    water regions.

    CPAN ratings

    CPAN ratings, <https://cpanratings.perl.org/>, is an inactive project
    that allows users to rate and review any CPAN module. In 2018, it no
    longer accepts new submission. But all existing submissions are still
    browsable.

lib/Acme/CPANModules/OrganizingCPAN.pm  view on Meta::CPAN

<pm:Acme::CPANAuthors>::* modules contains lists of CPAN author ID's, grouped by
some criteria.

**CPANModules**

<pm:Acme::CPANModules>::* modules contains lists of CPAN modules (or scripts),
grouped by some criteria.

**Map of CPAN**

The Map of CPAN project, <https://mapofcpan.org>, visualizes modules on CPAN as
a map, with top namespaces with lots of modules under them appearing as islands
while less popular namespaces are shown in the water regions.

**CPAN ratings**

CPAN ratings, <https://cpanratings.perl.org/>, is an inactive project that
allows users to rate and review any CPAN module. In 2018, it no longer accepts
new submission. But all existing submissions are still browsable.

**PrePAN**

lib/Acme/CPANModules/OrganizingCPAN.pm  view on Meta::CPAN

L<Acme::CPANAuthors>::* modules contains lists of CPAN author ID's, grouped by
some criteria.

B<CPANModules>

L<Acme::CPANModules>::* modules contains lists of CPAN modules (or scripts),
grouped by some criteria.

B<Map of CPAN>

The Map of CPAN project, L<https://mapofcpan.org>, visualizes modules on CPAN as
a map, with top namespaces with lots of modules under them appearing as islands
while less popular namespaces are shown in the water regions.

B<CPAN ratings>

CPAN ratings, L<https://cpanratings.perl.org/>, is an inactive project that
allows users to rate and review any CPAN module. In 2018, it no longer accepts
new submission. But all existing submissions are still browsable.

B<PrePAN>

t/00-compile.t  view on Meta::CPAN

use IO::Handle;

open my $stdin, '<', File::Spec->devnull or die "can't open devnull: $!";

my @warnings;
for my $lib (@module_files)
{
    # see L<perlfaq8/How can I capture STDERR from an external command?>
    my $stderr = IO::Handle->new;

    diag('Running: ', join(', ', map { my $str = $_; $str =~ s/'/\\'/g; q{'} . $str . q{'} }
            $^X, @switches, '-e', "require q[$lib]"))
        if $ENV{PERL_COMPILE_TEST_DEBUG};

    my $pid = open3($stdin, '>&STDERR', $stderr, $^X, @switches, '-e', "require q[$lib]");
    binmode $stderr, ':crlf' if $^O eq 'MSWin32';
    my @_warnings = <$stderr>;
    waitpid($pid, 0);
    is($?, 0, "$lib loaded ok");

    shift @_warnings if @_warnings and $_warnings[0] =~ /^Using .*\bblib/



( run in 1.186 second using v1.01-cache-2.11-cpan-49f99fa48dc )