Acme-CPANAuthors-Slovak
view release on metacpan or search on metacpan
package Acme::CPANAuthors::Slovak;
use strict;
use utf8;
use warnings;
our $VERSION = 0.28;
# Modules.
use Acme::CPANAuthors::Register(
'BARNEY' => 'Branislav ZahradnÃk',
'JKUTEJ' => 'Jozef Kutej',
'KOZO' => "Ján 'Kozo' Vajda",
'LKUNDRAK' => 'Lubomir Rintel',
'PALI' => 'Pavol Rohár',
'SAMSK' => 'Samuel Behan',
);
1;
__END__
=pod
=encoding utf8
=head1 NAME
Acme::CPANAuthors::Slovak - We are Slovak CPAN authors.
=head1 SYNOPSIS
use Acme::CPANAuthors;
my $authors = Acme::CPANAuthors->new('Slovak');
my $url = $authors->avatar_url('PALI');
my $number = $authors->count;
my @distors = $authors->distributions('JKUTEJ');
my @ids = $authors->id;
my $kwalitee = $authors->kwalitee('BARNEY');
my $name = $authors->name('PALI');
=head1 DESCRIPTION
See documentation for L<Acme::CPANAuthors> for more details.
=head1 EXAMPLE1
=for comment filename=count_slovak_cpan_authors.pl
use strict;
use warnings;
use Acme::CPANAuthors;
# Create object.
my $authors = Acme::CPANAuthors->new('Slovak');
# Get number of Slovak CPAN authors.
my $count = $authors->count;
# Print out.
print "Count of Slovak CPAN authors: $count\n";
# Output:
# Count of Slovak CPAN authors: 6
=head1 EXAMPLE2
=for comment filename=fetch_slovak_cpan_authors.pl
use strict;
use warnings;
use Acme::CPANAuthors;
use Data::Printer;
# Create object.
my $authors = Acme::CPANAuthors->new('Slovak');
# Get all ids.
my @ids = $authors->id;
# Print out.
p @ids;
( run in 1.896 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )