From 7e9ab93cf37207f3504ed1733915162fe55ec5c3 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 25 Jun 2007 21:52:51 +0000 Subject: [PATCH] Add LICENSE section to POD documentation --- Changes | 3 +++ CreditCard.pm | 25 +++++++++++-------------- Makefile.PL | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Changes b/Changes index 63aa43f..7459caf 100644 --- 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 diff --git a/CreditCard.pm b/CreditCard.pm index dbc6fea..426af19 100644 --- a/CreditCard.pm +++ b/CreditCard.pm @@ -1,24 +1,11 @@ package Business::CreditCard; -# Jon Orwant, -# -# 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 . -# 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 , Neale Banks and Max Becker 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 is a wrapper around Business::CreditCard diff --git a/Makefile.PL b/Makefile.PL index 7a2be20..0d63257 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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 ); -- 2.11.0