diff options
author | ivan <ivan> | 2002-08-14 01:32:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-08-14 01:32:54 +0000 |
commit | 57be53d4eb43d9dba5ce1882f32e79a8167b472c (patch) | |
tree | 500b18061f1f759c5e657bca6740287cd32b94f7 | |
parent | 905c3c508e85c7baf978bf5099142322d660e585 (diff) |
- PREREQ_PM on Business::OnlinePayment
- move load.t from t/ to t2/
- documentation updates
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | LinkPoint.pm | 4 | ||||
-rw-r--r-- | Makefile.PL | 1 | ||||
-rw-r--r-- | README | 7 | ||||
-rw-r--r-- | t2/load.t (renamed from t/load.t) | 0 |
5 files changed, 7 insertions, 6 deletions
@@ -6,6 +6,7 @@ Revision history for Perl extension Business::OnlinePayment::LinkPoint. 5.005-friendly way) - better URLs for linkpoint perl wrapper - don't spew debugging output by default + - move load.t test from t1/ to t2/ 0.01 Wed Nov 21 04:00:26 2001 - original version; created by ivan 1.0 diff --git a/LinkPoint.pm b/LinkPoint.pm index 17cab8e..26c16bb 100644 --- a/LinkPoint.pm +++ b/LinkPoint.pm @@ -1,6 +1,6 @@ package Business::OnlinePayment::LinkPoint; -# $Id: LinkPoint.pm,v 1.5 2002-02-27 23:28:28 ivan Exp $ +# $Id: LinkPoint.pm,v 1.6 2002-08-14 01:32:54 ivan Exp $ use strict; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK); @@ -234,7 +234,7 @@ Based on Busienss::OnlinePayment::AuthorizeNet written by Jason Kohles. =head1 SEE ALSO -perl(1). L<Business::OnlinePayment>. +perl(1), L<Business::OnlinePayment>. =cut diff --git a/Makefile.PL b/Makefile.PL index bb32ada..95f9c98 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -5,5 +5,6 @@ WriteMakefile( 'NAME' => 'Business::OnlinePayment::LinkPoint', 'VERSION_FROM' => 'LinkPoint.pm', # finds $VERSION 'AUTHOR' => 'Ivan Kohler <ivan-linkpoint@420.am>', + 'PREREQ_PM' => { 'Business::OnlinePayment' => 0, }, #'NORECURS' => 1, # dont descend into subdirectories ); @@ -3,12 +3,11 @@ All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. This is Business::OnlinePayment::LinkPoint, an Business::OnlinePayment -backend module for the LinkPoint. It is only useful if you have a merchant -account with LinkPoint: http://www.linkpoint.com/ and the "LinkPoint Perl -Wrapper": +backend module for LinkPoint. It is only useful if you have a merchant account +with LinkPoint: http://www.linkpoint.com/ and the "LinkPoint Perl Wrapper": http://www.linkpoint.com/product_solutions/internet/lperl/lperl_main.html -It is based on Businss::OnlinePayment::AuthorizeNet written by Jason Kohles. +It is based on Business::OnlinePayment::AuthorizeNet written by Jason Kohles. There are additional tests in t2/ that may be useful to you once you have a store number and key file. |