Acme::CPANAuthors::Italian - We are Italian CPAN Authors


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

Index


Code Index:

NAME

Top

Acme::CPANAuthors::Italian - We are Italian CPAN Authors

Acme::CPANAuthors::Italian - Noi siamo autori CPAN italiani

VERSION

Top

Version 0.01

SYNOPSIS

Top

    use Acme::CPANAuthors;

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

    my $number   = $authors->count;
    my @ids      = $authors->id();
    my @distros  = $authors->distributions('MBARBON');
    my $url i    = $authors->avatar_url('POLETTIX');
    my $kwalitee = $authors->kwalitee('LARSEN');
    my $name     = $authors->name('ARTHAS');

DESCRIPTION

Top

This class provides a hash of Italian CPAN authors' PAUSE ID and name to the Acme::CPANAuthors module.

MAINTENANCE

Top

If you are an Italian CPAN author not listed here, please send me your ID/name via email or RT so we can always keep this module up to date. If there's a mistake and you're listed here but are not Italian (or just don't want to be listed), sorry for the inconvenience: please contact me and I'll remove the entry right away.

SEE ALSO

Top

Acme::CPANAuthors - Main class to manipulate this one

Acme::CPANAuthors::Austrian - Austrian CPAN authors

Acme::CPANAuthors::Brazilian - Brazilian CPAN authors

Acme::CPANAuthors::Canadian - Canadian CPAN authors

Acme::CPANAuthors::Chinese - Chinese CPAN authors

Acme::CPANAuthors::French - French CPAN authors

Acme::CPANAuthors::Israeli - Israeli CPAN authors

Acme::CPANAuthors::Japanese - Japanese CPAN authors

Acme::CPANAuthors::Russian - Russian CPAN authors

Acme::CPANAuthors::Taiwanese - Taiwanese CPAN authors

Acme::CPANAuthors::Not - heh

AUTHOR

Top

Aldo "dada" Calpini, <dada at perl.it>

BUGS

Top

Please report any bugs or feature requests to bug-acme-cpanauthors-italian at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Acme-CPANAuthors-Italian. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Acme::CPANAuthors::Italian




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Acme-CPANAuthors-Italian

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Acme-CPANAuthors-Italian

* CPAN Ratings

http://cpanratings.perl.org/d/Acme-CPANAuthors-Italian

* Search CPAN

http://search.cpan.org/dist/Acme-CPANAuthors-Italian/

ACKNOWLEDGEMENTS

Top

Thanks to Kenichi Ishigaki for writing Acme::CPANAuthors. And to Sébastien Aperghis-Tramoni from whom I borrowed most of the boilerplate stuff.

COPYRIGHT & LICENSE

Top


Acme-CPANAuthors-Italian documentation Contained in the Acme-CPANAuthors-Italian distribution.
package Acme::CPANAuthors::Italian;

use warnings;
use strict;

{
    no strict 'vars';
    $VERSION = '0.01';
}

use Acme::CPANAuthors::Register (
    AAR             => q(Alessandro Ranellucci),
    ACALPINI        => q(Aldo "dada" Calpini),
    ARTHAS          => q(Michele Beltrame),
    BENAZZO         => q(Andrea Benazzo),
    BRONTO          => q(Marco Marongiu),
    BRUGNARA        => q(Guido Brugnara),
    COSIMO          => q(Cosimo Streppone),
    DAKKAR          => q(Gianni Ceccarelli),
    DAVIDEBE        => q(Davide Bergamini),
    DOMIZIO         => q(Domizio Demichelis),
    EBRUNI          => q(Emiliano Bruni),
    EMAZEP          => q(Emanuele Zeppieri),
    ENRYS           => q(Enrico Sorcinelli),
    GMAX            => q(Giuseppe Maxia),
    HOBBIT          => q(Leo Cacciari),
    LARSEN          => q(Stefano Rodighiero),
    MBARBON         => q(Mattia Barbon),
    MCANTONI        => q(Matteo Cantoni),
    OSFAMERON       => q(osfameron), # italian honoris causa :-)
    POLETTIX        => q(Flavio Poletti),
    VALDEZ          => q(Valerio "valdez" Paolini)
);

"tarallucci e vino";

__END__