Skip to content

Commit

Permalink
version 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
sharifulin committed Apr 20, 2009
1 parent df65f45 commit f5c8b1f
Show file tree
Hide file tree
Showing 15 changed files with 584 additions and 155 deletions.
Binary file added Acme-CPANAuthors-Russian-0.11.tar.gz
Binary file not shown.
35 changes: 35 additions & 0 deletions Build.PL
@@ -0,0 +1,35 @@
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
module_name => 'Acme::CPANAuthors::Russian',
license => 'perl',
dist_author => [
'Anatoly Sharifulin <sharifulin@gmail.com>',
q|Zoffix <'zoffix@cpan.org'>|
],
dist_version_from => 'lib/Acme/CPANAuthors/Russian.pm',
build_requires => {
'Test::More' => 0,
},
requires => {
'Acme::CPANAuthors::Register' => 0,
'Acme::CPANAuthors' => 0,
'perl' => 5.006, # for META.yml
},
meta_merge => {
resources => {
repository => 'http://github.com/sharifulin/acme-cpanauthors-russian/tree',
},
keywords => [
'CPAN',
'CPAN authors',
'Russian'
],
},
add_to_cleanup => [],
create_makefile_pl => 'traditional',
);

$builder->create_build_script();
40 changes: 40 additions & 0 deletions Changes
@@ -0,0 +1,40 @@
Revision history for Acme-CPANAuthors-Russian

0.11 April 20, 2009
113 authors and 73 pause ids.
Update Build.PL (thanks to chorny).
Change POD.

0.10 April 14, 2009
113 authors and 74 pause ids

0.9 March 24, 2009
116 authors and 71 pause ids

0.8 February 12, 2009
128 authors and 78 pause ids

0.6-0.7 February 11, 2009
126 authors

0.4-0.5 February 11, 2009
124 authors and 77 pause ids

0.3 February 10, 2009
123 authors

0.2 February 9, 2009
124 authors

0.0203 February 7, 2009
Added a lot of authors

0.02 February 7, 2009
Added 140 authors, script for fetch

0.0102 February 7, 2009
Added Anatoly Sharifulin

0.0101 November 2, 2008
First version, released on an unsuspecting world.

13 changes: 13 additions & 0 deletions MANIFEST
@@ -0,0 +1,13 @@
Build.PL
Changes
MANIFEST
README
lib/Acme/CPANAuthors/Russian.pm
examples/auth.pl
script/cpan-author.pl
script/cpan-faces.pl
t/00-load.t
t/pod-coverage.t
t/pod.t
Makefile.PL
META.yml
29 changes: 29 additions & 0 deletions META.yml
@@ -0,0 +1,29 @@
---
name: Acme-CPANAuthors-Russian
version: 0.11
author:
- 'Anatoly Sharifulin <sharifulin@gmail.com>'
- "Zoffix <'zoffix@cpan.org'>"
abstract: We are Russian CPAN authors
license: perl
resources:
license: http://dev.perl.org/licenses/
repository: http://github.com/sharifulin/acme-cpanauthors-russian/tree
requires:
Acme::CPANAuthors: 0
Acme::CPANAuthors::Register: 0
perl: 5.006
build_requires:
Test::More: 0
provides:
Acme::CPANAuthors::Russian:
file: lib/Acme/CPANAuthors/Russian.pm
version: 0.11
generated_by: Module::Build version 0.280801
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.2.html
version: 1.2
keywords:
- CPAN
- CPAN authors
- Russian
17 changes: 17 additions & 0 deletions Makefile.PL
@@ -0,0 +1,17 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.2808_01
require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile
(
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'NAME' => 'Acme::CPANAuthors::Russian',
'EXE_FILES' => [],
'VERSION_FROM' => 'lib/Acme/CPANAuthors/Russian.pm',
'PREREQ_PM' => {
'Test::More' => 0,
'Acme::CPANAuthors::Register' => 0,
'Acme::CPANAuthors' => 0
}
)
;
42 changes: 42 additions & 0 deletions README
@@ -0,0 +1,42 @@
Acme::CPANAuthors::Russian - We are Russian CPAN authors

Now 113 Russian CPAN authors.

INSTALLATION

To install this module, run the following commands:

perl Build.PL
./Build
./Build test
./Build install

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the
perldoc command.

perldoc Acme::CPANAuthors::Russian

You can also look for information at:

RT, CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Acme-CPANAuthors-Russian

AnnoCPAN, Annotated CPAN documentation
http://annocpan.org/dist/Acme-CPANAuthors-Russian

CPAN Ratings
http://cpanratings.perl.org/d/Acme-CPANAuthors-Russian

Search CPAN
http://search.cpan.org/dist/Acme-CPANAuthors-Russian


COPYRIGHT AND LICENCE

Copyright (C) 2009 by Anatoly Sharifulin.
Copyright (C) 2008-2009 by Zoffix Znet.

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

16 changes: 16 additions & 0 deletions examples/auth.pl
@@ -0,0 +1,16 @@
#!/usr/bin/env perl

use strict;
use warnings;

use lib qw(lib ../lib);
use Acme::CPANAuthors;

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

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

0 comments on commit f5c8b1f

Please sign in to comment.