Acme::CPANAuthors::Turkish - We are Turkish CPAN authors


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

Index


Code Index:

NAME

Top

Acme::CPANAuthors::Turkish - We are Turkish CPAN authors

Acme::CPANAuthors::Turkish - Türk CPAN Yazarları

SYNOPSIS

Top

   use Acme::CPANAuthors;
   use Acme::CPANAuthors::Turkish;

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

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

DESCRIPTION

Top

This document describes version 0.20 of Acme::CPANAuthors::Turkish released on 5 November 2010.

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

MAINTENANCE

Top

If you are a turkish 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 turkish (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

Burak Gursoy <burak@cpan.org>.

COPYRIGHT

Top

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.1 or, at your option, any later version of Perl 5 you may have available.


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

package Acme::CPANAuthors::Turkish;
use strict;
use vars qw( $VERSION );
use warnings;

$VERSION = '0.20';

use Acme::CPANAuthors::Register (
    AULUSOY => 'Ayhan Ulusoy',
    BDD     => 'Berk D. Demir',
    BURAK   => 'Burak Gürsoy',
    ENGIN   => 'Engin Gündüz',
    MUTOGUZ => 'OÄŸuz Mut',
    NANIS   => 'A. Sinan Ünür',
    TTAR    => 'Tolga Tarhan',
    ZIYA    => 'Ziya Süzen',
);

1;

__END__