0.09 master
authorivan <ivan>
Tue, 16 Aug 2011 01:55:27 +0000 (01:55 +0000)
committerivan <ivan>
Tue, 16 Aug 2011 01:55:27 +0000 (01:55 +0000)
Changes
Makefile.PL
README
lib/Business/OnlinePayment/Jety.pm

diff --git a/Changes b/Changes
index 5a53206..fba747f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Business-OnlinePayment-Jety
 
+0.09    Mon Aug 15 18:50:43 PDT 2011
+        - POD updates
+        - CPAN upload
+
 0.08    Fri Mar 19 00:22:40 PDT 2010
         - Add "credit" as a synonym for "void".
 
index 56947e4..82d2b86 100644 (file)
@@ -13,6 +13,10 @@ WriteMakefile(
     PL_FILES            => {},
     PREREQ_PM => {
         'Test::More' => 0,
+        'Tie::IxHash' => 0,
+        'Date::Format' => 0,
+        'Business::OnlinePayment' => 0,
+        'Net::HTTPS::Any' => 0,
     },
     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     clean               => { FILES => 'Business-OnlinePayment-Jety-*' },
diff --git a/README b/README
index 9c9cc59..d2fd451 100644 (file)
--- a/README
+++ b/README
@@ -2,6 +2,9 @@ Business-OnlinePayment-Jety
 
 Business::OnlinePayment backend for Jety Payments electronic check processing.
 
+It's useful only if you have a merchant account with Jety Payments
+(http://www.jetpay.com/).
+
 INSTALLATION
 
 To install this module, run the following commands:
@@ -35,8 +38,17 @@ You can also look for information at:
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2009 Mark Wells
+Copyright (C) 2011 Freeside Internet Services, Inc.
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.
 
+ADVERTISEMENT
+
+Need a complete, open-source back-office and customer self-service solution?
+The Freeside software includes support for credit card and electronic check
+processing, integrated trouble ticketing, and customer signup and self-service
+web interfaces.
+
+http://freeside.biz/freeside/
+
index a10c64e..bfd7998 100644 (file)
@@ -10,7 +10,7 @@ use Date::Format;
 use Tie::IxHash;
 
 @ISA = qw(Business::OnlinePayment::HTTPS);
-$VERSION = '0.08';
+$VERSION = '0.09';
 $me = 'Business::OnlinePayment::Jety';
 
 $DEBUG = 0;
@@ -260,8 +260,7 @@ Business::OnlinePayment::Jety - Jety Payments ACH backend for Business::OnlinePa
   use Business::OnlinePayment;
 
   ####
-  # Electronic check authorization.  We only support 
-  # 'Normal Authorization'.
+  # Electronic check authorization.
   ####
 
   my $tx = new Business::OnlinePayment("Jety");
@@ -322,7 +321,9 @@ Returns a useful error message.
 
 The following actions are valid:
 
-  normal authorization
+  Normal Authorization
+  Void
+  Credit
 
 =head1 AUTHOR
 
@@ -332,5 +333,14 @@ Mark Wells <mark@freeside.biz>
 
 perl(1). L<Business::OnlinePayment>.
 
+=head1 ADVERTISEMENT
+
+Need a complete, open-source back-office and customer self-service solution?
+The Freeside software includes support for credit card and electronic check
+processing, integrated trouble ticketing, and customer signup and self-service
+web interfaces.
+
+http://freeside.biz/freeside/
+
 =cut