we don't use B:OP:HTTPS yet, no need to depent on B:OP v3. correct Makefile.PL wrt...
authorivan <ivan>
Fri, 13 Apr 2007 18:40:18 +0000 (18:40 +0000)
committerivan <ivan>
Fri, 13 Apr 2007 18:40:18 +0000 (18:40 +0000)
Changes
Makefile.PL
Skipjack.pm

diff --git a/Changes b/Changes
index c005e4e..e71c1a8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -2,6 +2,8 @@ Revision history for Perl extension Business::OnlinePayment::SkipJack
 
 0.3     unreleased
         - update missed bad_card_mc.t to new test account
+        - we don't use B:OP:HTTPS yet, no need to depent on B:OP v3
+        - correct Makefile.PL wrt actual dependency s/Text::CSV/Text::CSV_XS/
 
 0.2    Wed Apr 11 14:11:28 PDT 2007
         - clarify licensing (no original code remains)
index 6f2ee31..61da078 100644 (file)
@@ -3,7 +3,7 @@ WriteMakefile(
     'NAME'         => 'Business::OnlinePayment::Skipjack',
     'VERSION_FROM' => 'Skipjack.pm',
     'AUTHOR'       => 'See README',
-    'PREREQ_PM'    => {'Net::SSLeay' => 0, 'Text::CSV' => 0,
+    'PREREQ_PM'    => {'Net::SSLeay' => 0, 'Text::CSV_XS' => 0,
                        'Business::OnlinePayment' => 0},
     'dist'         => {CI => 'ci -l'},
 );
index 5c6565e..dc2e0a4 100644 (file)
@@ -22,15 +22,16 @@ package Business::OnlinePayment::Skipjack;
 
 use strict;
 use Carp;
-use Business::OnlinePayment 3;
-use Business::OnlinePayment::HTTPS;
+use Business::OnlinePayment ;#3;
+#use Business::OnlinePayment::HTTPS;
 use Text::CSV_XS;
 use vars qw( @ISA $VERSION $DEBUG );
 
-$VERSION = "0.2";
+$VERSION = "0.3";
 $DEBUG = 0;
 
-@ISA = qw( Business::OnlinePayment::HTTPS );
+#@ISA = qw( Business::OnlinePayment::HTTPS );
+@ISA = qw( Business::OnlinePayment );
 
 my %CC_ERRORS = (
         '-1'    =>      'Invalid length (-1)',