Skip to content

Commit

Permalink
add YKO
Browse files Browse the repository at this point in the history
  • Loading branch information
sharifulin committed Jul 24, 2011
1 parent cecfd6e commit 88c37be
Show file tree
Hide file tree
Showing 6 changed files with 113 additions and 43 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
*.tar.gz
MANIFEST.SKIP
Binary file removed Acme-CPANAuthors-Ukrainian-0.14.tar.gz
Binary file not shown.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for Acme-CPANAuthors-Ukrainian

0.16 2011-07-25 00:09
Add YKO

0.15 2010-06-16 11:59
Add Zero

Expand Down
41 changes: 0 additions & 41 deletions README

This file was deleted.

104 changes: 104 additions & 0 deletions README.pod
@@ -0,0 +1,104 @@
=encoding UTF-8

=head1 NAME

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

=head1 SYNOPSIS

use Acme::CPANAuthors;

my $authors = Acme::CPANAuthors->new("Ukrainian");

my $number = $authors->count;
my @ids = $authors->id;
my @distros = $authors->distributions("VTI");
my $url = $authors->avatar_url("DZHARIY");
my $kwalitee = $authors->kwalitee("VIY");
my $name = $authors->name("EJS");

See documentation for L<Acme::CPANAuthors> for more details.

=head1 DESCRIPTION

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

=head1 MAINTENANCE

If you are a Ukrainian CPAN author not listed here, please send me your ID/name
via email or RT so I can always keep this module up to date.


=head1 CONTAINED AUTHORS

Now B<13> Ukrainian CPAN authors:

CUB => 'Kostyuk Oleg',
DARKNOS => 'Sergey Nosenko',
DZHARIY => 'Дмитрий Жарий',
EJS => 'Eugen Sobchenko',
GRUBER => 'Anton Berezin',
GUGU => 'Андрей Костенко',
PANOLEX => 'Олександр Панчук',
SKOLYCHEV => 'Sergey V. Kolychev',
VADIM => 'Vadim Ponomarenko',
VIY => 'Igor Yu. Vlasenko',
VTI => 'Вячеслав Тихановский',
YKO => 'Ярослав Коршак',
ZERO => 'Oleg Alistratov'

=head1 SEE ALSO

L<Acme::CPANAuthors> L<Acme::CPANAuthors::Russian> L<http://search.cpan.org/search?query=Acme%3A%3ACPANAuthors&mode=all>

=head1 AUTHOR

Anatoly Sharifulin, C<< <sharifulin at gmail.com> >>

=head1 BUGS

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

=head1 SUPPORT

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

perldoc Acme::CPANAuthors::Ukrainian

You can also look for information at:

=over 5

=item * Github

L<http://github.com/sharifulin/acme-cpanauthors-Ukrainian/tree/master>

=item * RT: CPAN's request tracker

L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Acme-CPANAuthors-Ukrainian>

=item * AnnoCPAN: Annotated CPAN documentation

L<http://annocpan.org/dist/Acme-CPANAuthors-Ukrainian>

=item * CPAN Ratings

L<http://cpanratings.perl.org/d/Acme-CPANAuthors-Ukrainian>

=item * Search CPAN

L<http://search.cpan.org/dist/Acme-CPANAuthors-Ukrainian>

=back

=head1 COPYRIGHT & LICENSE

Copyright (C) 2009 by Anatoly Sharifulin.

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.

=cut
6 changes: 4 additions & 2 deletions lib/Acme/CPANAuthors/Ukrainian.pm
Expand Up @@ -4,7 +4,7 @@ use utf8; # encoding="utf-8"
use warnings;
use strict;

our $VERSION = '0.15';
our $VERSION = '0.16';

use Acme::CPANAuthors::Register (
CUB => 'Kostyuk Oleg',
Expand All @@ -18,6 +18,7 @@ use Acme::CPANAuthors::Register (
VADIM => 'Vadim Ponomarenko',
VIY => 'Igor Yu. Vlasenko',
VTI => 'Вячеслав Тихановский',
YKO => 'Ярослав Коршак',
ZERO => 'Oleg Alistratov',
);

Expand Down Expand Up @@ -58,7 +59,7 @@ via email or RT so I can always keep this module up to date.
=head1 CONTAINED AUTHORS
Now B<12> Ukrainian CPAN authors:
Now B<13> Ukrainian CPAN authors:
CUB => 'Kostyuk Oleg',
DARKNOS => 'Sergey Nosenko',
Expand All @@ -71,6 +72,7 @@ Now B<12> Ukrainian CPAN authors:
VADIM => 'Vadim Ponomarenko',
VIY => 'Igor Yu. Vlasenko',
VTI => 'Вячеслав Тихановский',
YKO => 'Ярослав Коршак',
ZERO => 'Oleg Alistratov'
=head1 SEE ALSO
Expand Down

0 comments on commit 88c37be

Please sign in to comment.