-Revision history for Perl extension Graph::Imager.
+Revision history for Perl extension Imager::Graph.
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
=================
package Imager::Graph;
+require 5.005;
=head1 NAME
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_]+)/);
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. :)
Graph.pm
ImUgly.ttf A moderately ugly font
MANIFEST
+MANIFEST.SKIP
Makefile.PL
README
TODO
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
--- /dev/null
+^\.svn\b
+^testout/
+~$
+/\.svn/
+^blib/
+^Makefile$
+^Makefile\.old$
+^pm_to_blib$
+
1;
__END__
+=back
+
=head1 AUTHOR
Tony Cook <tony@develop-help.com>
--- /dev/null
+#!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();
--- /dev/null
+#!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();