Looks good.
Only change needed is to remove all mention of Imager. I only used it
to test things while developing. Not needed now.
-Philip
----------------------------
diff -rub GSAPI-0.5/Makefile.PL GSAPI-0.5-PG/Makefile.PL
--- GSAPI-0.5/Makefile.PL 2008-11-18 10:30:37.000000000 -0500
+++ GSAPI-0.5-PG/Makefile.PL 2008-12-11 16:27:40.000000000 -0500
@@ -41,7 +41,7 @@
WriteMakefile(
'NAME' => 'GSAPI',
'VERSION_FROM' => 'GSAPI.pm', # finds $VERSION
- 'PREREQ_PM' => { "Imager" }, # e.g., Module::Name => 1.1
+ 'PREREQ_PM' => { }, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'GSAPI.pm', # retrieve abstract from module
AUTHOR => 'Stefan Traby <stefan@hello-penguin.com>') : ()),
diff -rub GSAPI-0.5/t/20_display.t GSAPI-0.5-PG/t/20_display.t
--- GSAPI-0.5/t/20_display.t 2008-11-15 09:34:49.000000000 -0500
+++ GSAPI-0.5-PG/t/20_display.t 2008-12-11 16:27:25.000000000 -0500
@@ -3,8 +3,6 @@
use strict;
use warnings;
-use Data::Dumper;
-use Imager;
use Test::More tests => 39;
BEGIN { use_ok('GSAPI') };