prerequisite changes
authorjeff <jeff>
Fri, 11 Jul 2008 01:03:45 +0000 (01:03 +0000)
committerjeff <jeff>
Fri, 11 Jul 2008 01:03:45 +0000 (01:03 +0000)
Changes
IPPay.pm
META.yml
Makefile.PL

diff --git a/Changes b/Changes
index 8da843b..9b074f8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Business::OnlinePayment::IPPay.
 
+0.03  Sun Jul 10 21:00:58 2008 EDT
+       - require Business::OnlinePayment::HTTPS 0.09
+       - remove unnecessary requirements
+       - ensure transaction id and transaction are from the same server
+       - more debugging info
+
 0.02  Sun Jul  3 17:44:08 2008 PDT
        - add live default server;
        - send billing address as shipping address for card transactions
index 65815f0..771d5e3 100644 (file)
--- a/IPPay.pm
+++ b/IPPay.pm
@@ -10,8 +10,8 @@ use Business::OnlinePayment::HTTPS;
 use vars qw($VERSION $DEBUG @ISA $me);
 
 @ISA = qw(Business::OnlinePayment::HTTPS);
-$VERSION = '0.02';
-$DEBUG = 1;
+$VERSION = '0.03';
+$DEBUG = 0;
 $me = 'Business::OnlinePayment::IPPay';
 
 sub set_defaults {
index 5700a5f..881c2eb 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,18 +1,13 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Business-OnlinePayment-IPPay
-version:      0.02
+version:      0.03
 version_from: IPPay.pm
 installdirs:  site
 requires:
     Business::OnlinePayment:       3
-    Crypt::SSLeay:                 0
-    Date::Calc:                    0
-    HTTP::Request:                 0
-    HTTP::Request::Common:         0
-    LWP::UserAgent:                0
+    Business::OnlinePayment::HTTPS: 0.09
     Test::More:                    0.42
-    Text::CSV_XS:                  0
     Tie::IxHash:                   0
     XML::Simple:                   0
     XML::Writer:                   0
index 2fb1b8a..f522ecc 100644 (file)
@@ -4,13 +4,7 @@ WriteMakefile(
     'VERSION_FROM' => 'IPPay.pm', # finds $VERSION
     'AUTHOR'       => 'Jeff Finucane <ippay@weasellips.com>',
     'PREREQ_PM'    => { 'Business::OnlinePayment' => 3,
-#                        'Business::OnlinePayment::HTTPS' => 0,
-                        'Crypt::SSLeay'           => 0,
-                        'Date::Calc'              => 0,
-                        'HTTP::Request'           => 0,
-                        'HTTP::Request::Common'   => 0,
-                        'LWP::UserAgent'          => 0,
-                        'Text::CSV_XS' => 0,
+                        'Business::OnlinePayment::HTTPS' => 0.09,
                        'Test::More'              => 0.42,
                         'Tie::IxHash'             => 0,
                         'XML::Simple'             => 0,