Acme::CPANAuthors::Pumpkings - We are pumpkings.


Acme-CPANAuthors-Pumpkings documentation Contained in the Acme-CPANAuthors-Pumpkings distribution.

Index


Code Index:

NAME

Top

Acme::CPANAuthors::Pumpkings - We are pumpkings.

SYNOPSIS

Top

 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

Top

This class provides a hash of PAUSE IDs and names of the Pumpkings.

DEVELOPMENT

Top

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

AUTHOR

Top

Abigail, mailto:cpan@abigail.be.

COPYRIGHT and LICENSE

Top

INSTALLATION

Top

To install this module, run, after unpacking the tar-ball, the following commands:

   perl Makefile.PL
   make
   make test
   make install


Acme-CPANAuthors-Pumpkings documentation Contained in the Acme-CPANAuthors-Pumpkings distribution.

package Acme::CPANAuthors::Pumpkings;

use 5.006;
use strict;
use warnings;
no  warnings 'syntax';

our $VERSION = '2010082001';

use Acme::CPANAuthors::Register (
    q <LWALL>    => qq <Larry Wall>,
    q <ANDREWD>  => qq <Andy Dougherty>,
    q <TOMC>     => qq <Tom Christiansen>,
    q <CBAIL>    => qq <Charles Bailey>,
    q <NI-S>     => qq <Nick Ing-Simmons>,
    q <CHIPS>    => qq <Chip Salzenberg>,
    q <TIMB>     => qq <Tim Bunce>,
    q <MICB>     => qq <Malcolm Beattie>,
    q <GSAR>     => qq <Gurusamy Sarathy>,
    q <GBARR>    => qq <Graham Barr>,
    q <JHI>      => qq <Jarkko Hietaniemi>,
    q <HVDS>     => qq <Hugo van der Sanden>,
    q <MSCHWERN> => qq <Michael Schwern>,
    q <RGARCIA>  => qq <Rafa\x{EB}l Garcia-Suarez>,
    q <NWCLARK>  => qq <Nicholas Clark>,
    q <RCLAMP>   => qq <Richard Clamp>,
    q <LBROCARD> => qq <L\x{E9}on Brocard>,
    q <DAPM>     => qq <Dave Mitchell>,
    q <JESSE>    => qq <Jesse Vincent>,
    q <RJBS>     => qq <Ricardo Signes>,
    q <SHAY>     => qq <Steve Hay>,
    q <MSTROUT>  => qq <Matt S Trout>,
    q <DAGOLDEN> => qq <David Golden>,
    q <FLORA>    => qq <Florian Ragwitz>,
);

1;

__END__