Acme-CPANAuthors-Pumpkings
view release on metacpan or search on metacpan
--- #YAML:1.0
name: Acme-CPANAuthors-Pumpkings
version: 2012032201
abstract: We are pumpkings.
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:
NAME
Acme::CPANAuthors::Pumpkings - We are pumpkings.
SYNOPSIS
use Acme::CPANAuthors;
my $authors = Acme::CPANAuthors -> new ("Pumpkings");
my $number = $authors -> count;
my @ids = $authors -> id;
my @distros = $authors -> distributions ("LWALL");
my $url = $authors -> avatar_url ("LWALL");
my $kwalitee = $authors -> kwalitee ("LWALL");
my $name = $authors -> name ("LWALL");
See documentation for Acme::CPANAuthors for more details.
DESCRIPTION
This class provides a hash of PAUSE IDs and names of the Pumpkings.
DEVELOPMENT
The current sources of this module are found on github,
<git://github.com/Abigail/Acme--CPANAuthors--CPANTS--Pumpkings.git>.
lib/Acme/CPANAuthors/Pumpkings.pm view on Meta::CPAN
__END__
=head1 NAME
Acme::CPANAuthors::Pumpkings - We are pumpkings.
=head1 SYNOPSIS
use Acme::CPANAuthors;
my $authors = Acme::CPANAuthors -> new ("Pumpkings");
my $number = $authors -> count;
my @ids = $authors -> id;
my @distros = $authors -> distributions ("LWALL");
my $url = $authors -> avatar_url ("LWALL");
my $kwalitee = $authors -> kwalitee ("LWALL");
my $name = $authors -> name ("LWALL");
See documentation for Acme::CPANAuthors for more details.
=head1 DESCRIPTION
This class provides a hash of PAUSE IDs and names of the Pumpkings.
=head1 DEVELOPMENT
The current sources of this module are found on github,
t/000_basic.t view on Meta::CPAN
use Acme::CPANAuthors;
BEGIN {
use_ok ('Acme::CPANAuthors::Pumpkings') or
BAIL_OUT ("Loading of 'Acme::CPANAuthors::Pumpkings' failed");
}
ok defined $Acme::CPANAuthors::Pumpkings::VERSION, "VERSION is set";
my $authors = Acme::CPANAuthors -> new ('Pumpkings');
ok $authors, 'Got $authors';
ok $authors -> count, "There are pumpkings";
my @ids = $authors -> id;
ok scalar @ids, "There are ids";
ok $authors -> name ("LWALL"), "Find a name";
Test::NoWarnings::had_no_warnings () if $r;
done_testing;
( run in 1.807 second using v1.01-cache-2.11-cpan-5c0b1e786e0 )