From 08820e2ca4d9f6f3cb1b9ca3a620d2a570cc37b1 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 13 Apr 2007 18:40:18 +0000 Subject: [PATCH] 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/ --- Changes | 2 ++ Makefile.PL | 2 +- Skipjack.pm | 9 +++++---- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index c005e4e..e71c1a8 100644 --- 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) diff --git a/Makefile.PL b/Makefile.PL index 6f2ee31..61da078 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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'}, ); diff --git a/Skipjack.pm b/Skipjack.pm index 5c6565e..dc2e0a4 100644 --- a/Skipjack.pm +++ b/Skipjack.pm @@ -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)', -- 2.11.0