Add LICENSE section to POD documentation
authorivan <ivan>
Mon, 25 Jun 2007 21:52:51 +0000 (21:52 +0000)
committerivan <ivan>
Mon, 25 Jun 2007 21:52:51 +0000 (21:52 +0000)
Changes
CreditCard.pm
Makefile.PL

diff --git a/Changes b/Changes
index 63aa43f..7459caf 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Business::CreditCard.
 
+0.31  unreleased
+        - Add LICENSE section to POD documentation
+
 0.30  Mon Dec 18 23:24:25 PST 2006
         - back after two and a half years; happy hanukkah!
        - added note about B:CC:Object
index dbc6fea..426af19 100644 (file)
@@ -1,24 +1,11 @@
 package Business::CreditCard;
 
-# Jon Orwant, <orwant@media.mit.edu>
-#
-# Copyright 1995,1996,1997 Jon Orwant
-# Copyright 2001-2006 Ivan Kohler
-# All rights reserved.
-# This program is free software; you can redistribute it and/or
-# modify it under the same terms as Perl itself.
-#
-# Current maintainer is Ivan Kohler <ivan-business-creditcard@420.am>.
-# Please don't bother Jon with emails about this module.
-
-require 5;
-
 require Exporter;
 use vars qw( @ISA $VERSION $Country );
 
 @ISA = qw( Exporter );
 
-$VERSION = "0.30";
+$VERSION = "0.31";
 
 $Country = 'US';
 
@@ -129,6 +116,16 @@ Lee Lawrence <LeeL@aspin.co.uk>, Neale Banks <neale@lowendale.com.au> and
 Max Becker <Max.Becker@firstgate.com> contributed support for additional card
 types.  Lee also contributed a working test.pl.
 
+=head1 COPYRIGHT AND LICENSE
+
+Copyright (C) 1995,1996,1997 Jon Orwant
+Copyright (C) 2001-2006 Ivan Kohler
+Copyright (C) 2007 Freeside Internet Services, Inc.
+
+This library is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself, either Perl version 5.8.8 or,
+at your option, any later version of Perl 5 you may have available.
+
 =head1 SEE ALSO
 
 L<Business::CreditCard::Object> is a wrapper around Business::CreditCard
index 7a2be20..0d63257 100644 (file)
@@ -2,6 +2,6 @@ use ExtUtils::MakeMaker;
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.
 WriteMakefile(
-    'NAME'      => 'Business::CreditCard',
+    'NAME'         => 'Business::CreditCard',
     'VERSION_FROM' => 'CreditCard.pm', # finds $VERSION
 );