Acme-CPANAuthors-CPANTS-FiveOrMore

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

Version 2010072801 Wed Jul 28 00:20:19 CEST 2010
+ New authors
+ Remove Kwalitee test

Version 2010022301 Tue Feb 23 18:11:05 CET 2010
+ New authors

Version 2010011301 Wed Jan 13 21:50:30 CET 2010
+ New authors
+ Kwalitee test author only

Version 2010010401 Mon Jan  4 13:18:42 CET 2010
+ New authors

Version 2009121601
+ Propagate requirements in Makefile.PL
+ New author(s)

Version 2009121401
+ Require Test::More 0.88.

Version 2009120701
+ New author(s)
+ Require version 1.01 of Test::Kwalitee for optional Kwalitee tests.

Version 2009112401
+ New author(s)

Version 2009111701
+ New authors

Version 2009110901
+ First release

META.yml  view on Meta::CPAN

--- #YAML:1.0
name:               Acme-CPANAuthors-CPANTS-FiveOrMore
version:            2010072801
abstract:           CPAN Authors with five or more dists
author:
    - Abigail <cpan@abigail.be>
license:            mit
distribution_type:  module
configure_requires:
    Acme::CPANAuthors:    0
    ExtUtils::MakeMaker:  0
    strict:               0
    Test::More:           0.88
    warnings:             0
build_requires:

README  view on Meta::CPAN

NAME
    Acme::CPANAuthors::CPANTS::FiveOrMore - CPAN Authors with five or more
    dists

SYNOPSIS
     use Acme::CPANAuthors;

     my $authors  = Acme::CPANAuthors -> new ("CPANTS::FiveOrMore");

     my $number   = $authors -> count;
     my @ids      = $authors -> id;
     my @distros  = $authors -> distributions ("ABIGAIL");
     my $url      = $authors -> avatar_url    ("ABIGAIL");
     my $kwalitee = $authors -> kwalitee      ("ABIGAIL");
     my $name     = $authors -> name          ("ABIGAIL");

    See documentation for Acme::CPANAuthors for more details.

DESCRIPTION
    This class provides a hash of PAUSE IDs and names of CPAN authors who
    have five or more distributions in the CPANTS database.

DEVELOPMENT
    The current sources of this module are found on github,
    <git://github.com/Abigail/Acme--CPANAuthors--CPANTS--FiveOrMore.git>.

AUTHOR
    Abigail, <mailto:cpan@abigail.be>.

COPYRIGHT and LICENSE

lib/Acme/CPANAuthors/CPANTS/FiveOrMore.pm  view on Meta::CPAN

__END__

=head1 NAME

Acme::CPANAuthors::CPANTS::FiveOrMore - CPAN Authors with five or more dists

=head1 SYNOPSIS

 use Acme::CPANAuthors;

 my $authors  = Acme::CPANAuthors -> new ("CPANTS::FiveOrMore");

 my $number   = $authors -> count;
 my @ids      = $authors -> id;
 my @distros  = $authors -> distributions ("ABIGAIL");
 my $url      = $authors -> avatar_url    ("ABIGAIL");
 my $kwalitee = $authors -> kwalitee      ("ABIGAIL");
 my $name     = $authors -> name          ("ABIGAIL");

See documentation for Acme::CPANAuthors for more details.

=head1 DESCRIPTION

This class provides a hash of PAUSE IDs and names of CPAN authors
who have five or more distributions in the CPANTS database.

=head1 DEVELOPMENT

The current sources of this module are found on github,
L<< git://github.com/Abigail/Acme--CPANAuthors--CPANTS--FiveOrMore.git >>.

=head1 AUTHOR

Abigail, L<< mailto:cpan@abigail.be >>.

t/000_basic.t  view on Meta::CPAN

use Acme::CPANAuthors;

BEGIN {
    use_ok ('Acme::CPANAuthors::CPANTS::FiveOrMore') or
       BAIL_OUT ("Loading of 'Acme::CPANAuthors::CPANTS::FiveOrMores' failed");
}

ok defined $Acme::CPANAuthors::CPANTS::FiveOrMore::VERSION, "VERSION is set";


my $authors = Acme::CPANAuthors -> new ('CPANTS::FiveOrMore');

ok $authors, 'Got $authors';

ok $authors -> count, "There are authors";
my @ids = $authors -> id;
ok scalar @ids, "There are ids";
ok $authors -> name ("ABIGAIL"), "Find a name";

done_testing;



( run in 0.773 second using v1.01-cache-2.11-cpan-5c0b1e786e0 )