Skip to content

Commit

Permalink
Changes to improve Lyrics::Fetcher::LyricWiki's Kwalitee score:
Browse files Browse the repository at this point in the history
 - add META.yml
 - add POD tests


git-svn-id: file:///shared/svn/scripts/perl/modules/Lyrics-Fetcher-LyricWiki@200 c1e6fe2f-0919-0410-96f0-e3221d39872c
  • Loading branch information
bigpresh committed Jan 14, 2008
1 parent cd33981 commit 0e64090
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 7 deletions.
10 changes: 7 additions & 3 deletions Changes
@@ -1,12 +1,16 @@
Revision history for Perl extension Lyrics::Fetcher::LyricWiki
0.03 07/06/2007

0.04 2008/01/14
- Add META.yml, and POD tests

0.03 2007/06/07
- don't require perl 5.8.7 as that's unnecessary - it should work with
any 5.8 perl.

0.02 29/05/2007
0.02 2007/05/29
- documentation fixes - rushed first version out and left references to
Lyrics::Fetcher::AZLyrics in there!

0.01 13/05/2007
0.01 2007/05/13
- original version

5 changes: 4 additions & 1 deletion MANIFEST
Expand Up @@ -2,5 +2,8 @@ Changes
Makefile.PL
MANIFEST
README
t/Lyrics-Fetcher-LyricWiki.t
META.yml
t/1-basic.t
t/2-pod.t
t/3-pod-coverage.t
lib/Lyrics/Fetcher/LyricWiki.pm
17 changes: 17 additions & 0 deletions META.yml
@@ -0,0 +1,17 @@
--- #YAML:1.0
name: Lyrics-Fetcher-LyricWiki
abstract: Get song lyrics from www.LyricWiki.org
version: 0.04
author:
- David Precious <davidp@preshweb.co.uk>
license: perl
distribution_type: module
requires:
SOAP::Lite: 0
perl: 5.008
build_requires:
Test: 0
meta-spec:
version: 1.3
url: http://module-build.sourceforge.net/META-spec-v1.3.html
generated_by: hand
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -7,6 +7,6 @@ WriteMakefile(
VERSION_FROM => 'lib/Lyrics/Fetcher/LyricWiki.pm', # finds $VERSION
PREREQ_PM => { SOAP::Lite => 0 },
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/Lyrics/Fetcher/LyricWiki.pm', # retrieve abstract from module
(ABSTRACT_FROM => 'lib/Lyrics/Fetcher/LyricWiki.pm',
AUTHOR => 'David Precious <davidp@preshweb.co.uk>') : ()),
);
2 changes: 1 addition & 1 deletion README
@@ -1,4 +1,4 @@
Lyrics-Fetcher-LyricWiki version 0.03
Lyrics-Fetcher-LyricWiki README
====================================

Lyrics::Fetcher::LyricWiki, as the name suggests, fetches lyrics
Expand Down
2 changes: 1 addition & 1 deletion lib/Lyrics/Fetcher/LyricWiki.pm
Expand Up @@ -8,7 +8,7 @@ use warnings;
use SOAP::Lite;
use Carp;

our $VERSION = '0.03';
our $VERSION = '0.04';

# the HTTP User-Agent we'll send:
our $AGENT = "Perl/Lyrics::Fetcher::LyricWiki $VERSION";
Expand Down
File renamed without changes.
13 changes: 13 additions & 0 deletions t/2-pod.t
@@ -0,0 +1,13 @@
#!/usr/bin/perl

# Test POD correctness for SMS::AQL
#
# $Id: 2-pod.t 155 2007-06-26 20:18:51Z davidp $

use strict;
use Test::More;

eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();

13 changes: 13 additions & 0 deletions t/3-pod-coverage.t
@@ -0,0 +1,13 @@
#!/usr/bin/perl

# Test POD coverage for SMS::AQL
#
# $Id: 3-pod-coverage.t 155 2007-06-26 20:18:51Z davidp $


use strict;
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage"
if $@;
all_pod_coverage_ok();

0 comments on commit 0e64090

Please sign in to comment.