[Bps-public-commit] r11012 - in RT-Authen-Bitcard: lib/RT/Authen

ruz at bestpractical.com ruz at bestpractical.com
Wed Mar 5 11:44:01 EST 2008


Author: ruz
Date: Wed Mar  5 11:44:00 2008
New Revision: 11012

Added:
   RT-Authen-Bitcard/Changes
Modified:
   RT-Authen-Bitcard/MANIFEST
   RT-Authen-Bitcard/META.yml
   RT-Authen-Bitcard/Makefile.PL
   RT-Authen-Bitcard/lib/RT/Authen/Bitcard.pm

Log:
* bump version for release to the CPAN

Added: RT-Authen-Bitcard/Changes
==============================================================================
--- (empty file)
+++ RT-Authen-Bitcard/Changes	Wed Mar  5 11:44:00 2008
@@ -0,0 +1,4 @@
+0.04 Wed Mar 5 16:36:42 UTC 2008
+
+    * intial release to the CPAN
+

Modified: RT-Authen-Bitcard/MANIFEST
==============================================================================
--- RT-Authen-Bitcard/MANIFEST	(original)
+++ RT-Authen-Bitcard/MANIFEST	Wed Mar  5 11:44:00 2008
@@ -1,3 +1,4 @@
+Changes
 html/Callbacks/Bitcard/autohandler/Auth
 html/Callbacks/Bitcard/Elements/Header/Default
 html/Callbacks/Bitcard/Elements/Login/Default

Modified: RT-Authen-Bitcard/META.yml
==============================================================================
--- RT-Authen-Bitcard/META.yml	(original)
+++ RT-Authen-Bitcard/META.yml	Wed Mar  5 11:44:00 2008
@@ -4,7 +4,7 @@
   - Kevin Riggle <kevinr at bestpractical.com>
 distribution_type: module
 generated_by: Module::Install version 0.68
-license: GPL version 2
+license: GPL2
 meta-spec: 
   url: http://module-build.sourceforge.net/META-spec-v1.3.html
   version: 1.3
@@ -17,4 +17,5 @@
 requires: 
   Authen::Bitcard: 0.86
   Encode: 0
-version: 0.03
+  perl: 5.8.3
+version: 0.04

Modified: RT-Authen-Bitcard/Makefile.PL
==============================================================================
--- RT-Authen-Bitcard/Makefile.PL	(original)
+++ RT-Authen-Bitcard/Makefile.PL	Wed Mar  5 11:44:00 2008
@@ -2,13 +2,11 @@
 
 RTx('RT-Authen-Bitcard');
 
-name            ('RT-Authen-Bitcard');
-abstract        ('Allows RT to do authentication via a service which supports the Bitcard API');
-author          ('Kevin Riggle <kevinr at bestpractical.com>');
-version_from    ('lib/RT/Authen/Bitcard.pm');
-license         ('GPL version 2');
+abstract_from   ('lib/RT/Authen/Bitcard.pm');
+license         ('GPL2');
+all_from        ('lib/RT/Authen/Bitcard.pm');
 
 requires        ('Authen::Bitcard' => '0.86'); # we need register_url method
 requires        ('Encode');
 
-&WriteAll;
+WriteAll();

Modified: RT-Authen-Bitcard/lib/RT/Authen/Bitcard.pm
==============================================================================
--- RT-Authen-Bitcard/lib/RT/Authen/Bitcard.pm	(original)
+++ RT-Authen-Bitcard/lib/RT/Authen/Bitcard.pm	Wed Mar  5 11:44:00 2008
@@ -1,15 +1,16 @@
+=head1 NAME
 
-=head1 COPYRIGHT
-
-This extension is Copyright (C) 2005 Best Practical Solutions, LLC.
-
-It is freely redistributable under the terms of version 2 of the GNU GPL.
+RT::Authen::Bitcard - Allows RT to do authentication via a service which supports the Bitcard API
 
 =cut
 
 package RT::Authen::Bitcard;
 
-our $VERSION = '0.03';
+use v5.8.3;
+use strict;
+use warnings;
+
+our $VERSION = '0.04';
 
 use Authen::Bitcard 0.86;
 
@@ -27,3 +28,16 @@
 }
 
 1;
+
+=head1 AUTHOR
+
+Kevin Riggle E<lt>kevinr at bestpractical.comE<gt>
+
+=head1 COPYRIGHT
+
+This extension is Copyright (C) 2005-2008 Best Practical Solutions, LLC.
+
+It is freely redistributable under the terms of version 2 of the GNU GPL.
+
+=cut
+



More information about the Bps-public-commit mailing list