Changeset 12852 for lang/perl/Acme-CPANAuthors
- Timestamp:
- 05/30/08 23:02:06 (6 months ago)
- Location:
- lang/perl/Acme-CPANAuthors/trunk
- Files:
-
- 4 modified
-
Changes (modified) (1 diff)
-
Makefile.PL (modified) (1 diff)
-
lib/Acme/CPANAuthors.pm (modified) (1 diff)
-
t/01_basic.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Acme-CPANAuthors/trunk/Changes
r12161 r12852 1 1 Revision history for Acme-CPANAuthors 2 2 3 0.03 2008/05/30 4 - "What's actually broken is Parse::CPAN::Authors 2.26" release 5 - tentatively skip a test if Parse::CPAN::Authors 2.26 is loaded. 6 3 7 0.02 2008/05/22 4 - YAPC::Asia 2008 hackathonrelease8 - "YAPC::Asia 2008 hackathon" release 5 9 - made Acme::CPANAuthors::(Specific)->authors context sensitive. 6 10 - better cpan config loading -
lang/perl/Acme-CPANAuthors/trunk/Makefile.PL
r3606 r12852 9 9 ABSTRACT_FROM => 'lib/Acme/CPANAuthors.pm', 10 10 PREREQ_PM => { 11 'Carp' => 0,12 'CPAN::Config' => 0,13 'Exporter' => 0,14 'File::Spec' => 0,15 'Gravatar::URL' => 0,16 'Module::Find' => 0,17 'Parse::CPAN::Authors' => 0,18 'Parse::CPAN::Packages' => '2.27',19 'Test::More' => '0.47',20 'Test::UseAllModules' => '0.09',21 'URI' => 0,22 'Web::Scraper' => '0.21',11 'Carp' => 0, 12 'CPAN::Config' => 0, 13 'Exporter' => 0, 14 'File::Spec' => 0, 15 'Gravatar::URL' => 0, 16 'Module::Find' => 0, 17 'Parse::CPAN::Authors' => 0, # should be '2.27' in the future 18 'Parse::CPAN::Packages' => '2.27', 19 'Test::More' => '0.47', 20 'Test::UseAllModules' => '0.09', 21 'URI' => 0, 22 'Web::Scraper' => '0.21', 23 23 }, 24 24 ($ExtUtils::MakeMaker::VERSION >= 6.31 -
lang/perl/Acme-CPANAuthors/trunk/lib/Acme/CPANAuthors.pm
r11294 r12852 6 6 use Acme::CPANAuthors::Utils qw( cpan_authors cpan_packages ); 7 7 8 our $VERSION = '0.0 2';8 our $VERSION = '0.03'; 9 9 10 10 sub new { -
lang/perl/Acme-CPANAuthors/trunk/t/01_basic.t
r3606 r12852 22 22 ok $name =~ /Ishigaki/i; 23 23 24 my $avatar_url = $authors->avatar_url('ISHIGAKI'); 25 ok $avatar_url; 24 SKIP: { 25 require Parse::CPAN::Authors; 26 if ( $Parse::CPAN::Authors::VERSION == 2.26 ) { 27 skip ' Parse::CPAN::Authors 2.26 breaks this test', 1; 28 } 29 my $avatar_url = $authors->avatar_url('ISHIGAKI'); 30 ok $avatar_url; 31 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)