various Kwalitee changes
authorTony Cook <tony@develop-help.com>
Tue, 11 Dec 2007 10:23:38 +0000 (10:23 +0000)
committerTony Cook <tony@develop-help.com>
Tue, 11 Dec 2007 10:23:38 +0000 (10:23 +0000)
Changes
Graph.pm
MANIFEST
MANIFEST.SKIP [new file with mode: 0644]
lib/Imager/Graph/Pie.pm
t/t91pod.t [new file with mode: 0644]
t/t93podcover.t [new file with mode: 0644]

diff --git a/Changes b/Changes
index a259c9bb525f60c01d23aafa23ae720b3c9be55d..2fe2c5fae8bad6ab27a03fb88e3ff15ac76e2fa9 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,4 @@
-Revision history for Perl extension Graph::Imager.
+Revision history for Perl extension Imager::Graph.
 
 Imager-Graph 0.04
 =================
@@ -19,6 +19,8 @@ Imager-Graph 0.04
  - strictify Makefile.PL, include the LICENSE, use the correct version
    check for including the extra WriteMakefile keys
 
+ - various changes for Kwalitee
+
 Imager-Graph 0.02  Sat Oct  6 20:36:31 2001
 =================
 
index 7a20ed6977cba432367333c5bb5325951d984554..1766777cf22395f1c577cb70b3801cf50d539a9c 100644 (file)
--- a/Graph.pm
+++ b/Graph.pm
@@ -1,4 +1,5 @@
 package Imager::Graph;
+require 5.005;
 
 =head1 NAME
 
@@ -35,7 +36,7 @@ use strict;
 use vars qw($VERSION);
 use Imager qw(:handy);
 
-$VERSION = '0.03';
+$VERSION = '0.03_01';
 
 my $fancy_fills = 0;
 my ($im_version) = ($Imager::VERSION =~ /(\d\.[\d_]+)/);
@@ -1453,6 +1454,10 @@ Imager::Graph::Pie(3), Imager(3), perl(1).
 
 Tony Cook <tony@develop-help.com>
 
+=head1 LICENSE
+
+Imager::Graph is licensed under the same terms as perl itself.
+
 =head1 BLAME
 
 Addi for producing a cool imaging module. :)
index dd27462b65a0683cc7342119bc364effc18ea97c..fbd6ea74be114bc80e9a8cd95eb5f6b707ccb97f 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,6 +2,7 @@ Changes         A list of changes :)
 Graph.pm
 ImUgly.ttf      A moderately ugly font
 MANIFEST
+MANIFEST.SKIP
 Makefile.PL
 README
 TODO
@@ -9,6 +10,8 @@ lib/Imager/Graph/Pie.pm
 lib/Imager/Graph/Util.pm
 t/t00load.t
 t/t10pie.t
+t/t91pod.t
+t/t93podcover.t
 testimg/t10_lin_fount.png       Test output comparison images
 testimg/t10_mono.png
 testimg/t10_pie1.png
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644 (file)
index 0000000..8af8321
--- /dev/null
@@ -0,0 +1,9 @@
+^\.svn\b
+^testout/
+~$
+/\.svn/
+^blib/
+^Makefile$
+^Makefile\.old$
+^pm_to_blib$
+
index 0cd77832981fc8c3205d696d11b220212e0908d4..f7e9177a99735298821c71df3e54fd00ee5dd732 100644 (file)
@@ -495,6 +495,8 @@ sub _style_defs {
 1;
 __END__
 
+=back
+
 =head1 AUTHOR
 
 Tony Cook <tony@develop-help.com>
diff --git a/t/t91pod.t b/t/t91pod.t
new file mode 100644 (file)
index 0000000..db41c41
--- /dev/null
@@ -0,0 +1,7 @@
+#!perl -w
+use strict;
+use Test::More;
+use ExtUtils::Manifest qw(maniread);
+eval "use Test::Pod 1.00;";
+plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
+all_pod_files_ok();
diff --git a/t/t93podcover.t b/t/t93podcover.t
new file mode 100644 (file)
index 0000000..6d07743
--- /dev/null
@@ -0,0 +1,8 @@
+#!perl -w
+use strict;
+use Test::More;
+eval "use Test::Pod::Coverage 1.08;";
+# 1.08 required for coverage_class support
+plan skip_all => "Test::Pod::Coverage 1.08 required for POD coverage" if $@;
+
+all_pod_coverage_ok();