Acme::CPANAuthors::Indonesian - We are Indonesian CPAN authors (Kami para penulis CPAN)


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

Index


Code Index:

NAME

Top

Acme::CPANAuthors::Indonesian - We are Indonesian CPAN authors (Kami para penulis CPAN)

VERSION

Top

version 0.02

SYNOPSIS

Top

   use Acme::CPANAuthors;
   use Acme::CPANAuthors::Indonesian;

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

   my $number   = $authors->count;
   my @ids      = $authors->id;
   my @distros  = $authors->distributions('HASANT');
   my $url      = $authors->avatar_url('EDPRATOMO');
   my $kwalitee = $authors->kwalitee('SHARYANTO');

DESCRIPTION

Top

This class is used to provide a hash of Indonesian CPAN author's PAUSE id/name to Acme::CPANAuthors.

MAINTENANCE

Top

If you are an Indonesian 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 Indonesian (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::Chinese - Code and documentation nearly taken verbatim from it

AUTHOR

Top

  Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE

Top


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

package Acme::CPANAuthors::Indonesian;

# ABSTRACT: We are Indonesian CPAN authors (Kami para penulis CPAN)

use strict;
use warnings;

our $VERSION = '0.02';

use Acme::CPANAuthors::Register (
    DNS         => 'Daniel Sirait',
    EDPRATOMO   => 'Edwin Pratomo',
    HASANT      => 'Hasanuddin Tamir',
    SHARYANTO   => 'Steven Haryanto',
);

1;




__END__