[Catalyst-commits] r13910 - in Catalyst-Action-Serialize-SimpleExcel/1.000/trunk: . lib/Catalyst/Action/Serialize

caelum at dev.catalyst.perl.org caelum at dev.catalyst.perl.org
Wed Jan 5 09:49:03 GMT 2011


Author: caelum
Date: 2011-01-05 09:49:03 +0000 (Wed, 05 Jan 2011)
New Revision: 13910

Removed:
   Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/README
Modified:
   Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/Changes
   Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/Makefile.PL
   Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/lib/Catalyst/Action/Serialize/SimpleExcel.pm
Log:
generate README, release 0.015

Modified: Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/Changes
===================================================================
--- Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/Changes	2011-01-05 09:39:55 UTC (rev 13909)
+++ Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/Changes	2011-01-05 09:49:03 UTC (rev 13910)
@@ -1,18 +1,21 @@
 Revision history for Catalyst-Action-Serialize-SimpleExcel
 
+0.015  2011-01-05 09:47:48
+    - Generate README file.
+
 0.014  2011-01-05 09:37:55
     - Multiple worksheet support.
 
 0.013  2009-09-24 10:22:22
-    Added $worksheet->keep_leading_zeros(1)
+    - Added $worksheet->keep_leading_zeros(1)
 
 0.012  2008-11-17 15:24:22 PDT
-    Added automatic column widths support.
+    - Added automatic column widths support.
 
 0.011  2008-11-12 13:17:16 PDT
-    First CPAN release, fixed Content-Type and used HashRefInflator in example
-    as jshirley suggested.
+    - First CPAN release, fixed Content-Type and used HashRefInflator in example
+      as jshirley suggested.
 
 0.01_01  2008-11-11 03:34:23 PDT
-    svn deleted all my files then rebuilt it from screen scrollback buffers,
-    just as I was putting the finishing touches on the dist.
+    - svn deleted all my files then rebuilt it from screen scrollback buffers,
+      just as I was putting the finishing touches on the dist.

Modified: Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/Makefile.PL
===================================================================
--- Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/Makefile.PL	2011-01-05 09:39:55 UTC (rev 13909)
+++ Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/Makefile.PL	2011-01-05 09:49:03 UTC (rev 13910)
@@ -5,17 +5,24 @@
 author   'Rafael Kitover <rkitover at cpan.org>';
 license  'perl';
 
-requires 'Catalyst::Controller::REST';                                
-requires 'Spreadsheet::WriteExcel';                                   
-requires 'parent';                                                    
-requires 'namespace::clean';                                          
-                                                                      
-test_requires 'Test::More';                                           
-test_requires 'Spreadsheet::ParseExcel';                              
-test_requires 'Test::Deep';                                           
-                                                                      
-auto_install;                                                         
-                                                                      
+requires 'Catalyst::Controller::REST';
+requires 'Spreadsheet::WriteExcel';
+requires 'parent';
+requires 'namespace::clean';
+
+test_requires 'Test::More';
+test_requires 'Spreadsheet::ParseExcel';
+test_requires 'Test::Deep';
+
+if ($Module::Install::AUTHOR) {
+    system("pod2text lib/Catalyst/Action/Serialize/SimpleExcel.pm > README");
+}
+
+realclean_files 'README';
+
+auto_provides;
+auto_install;
+
 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/';
 
-WriteAll;                                                             
+WriteAll;

Deleted: Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/README
===================================================================
--- Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/README	2011-01-05 09:39:55 UTC (rev 13909)
+++ Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/README	2011-01-05 09:49:03 UTC (rev 13910)
@@ -1,39 +0,0 @@
-Catalyst-Action-Serialize-SimpleExcel
-
-INSTALLATION
-
-To install this module, run the following commands:
-
-	perl Makefile.PL
-	make
-	make test
-	make install
-
-SUPPORT AND DOCUMENTATION
-
-After installing, you can find documentation for this module with the
-perldoc command.
-
-    perldoc Catalyst::Action::Serialize::SimpleExcel
-
-You can also look for information at:
-
-    RT, CPAN's request tracker
-        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Catalyst-Action-Serialize-SimpleExcel
-
-    AnnoCPAN, Annotated CPAN documentation
-        http://annocpan.org/dist/Catalyst-Action-Serialize-SimpleExcel
-
-    CPAN Ratings
-        http://cpanratings.perl.org/d/Catalyst-Action-Serialize-SimpleExcel
-
-    Search CPAN
-        http://search.cpan.org/dist/Catalyst-Action-Serialize-SimpleExcel/
-
-
-COPYRIGHT AND LICENCE
-
-Copyright (c) 2008 Rafael Kitover
-
-This program is free software; you can redistribute it and/or modify it
-under the same terms as Perl itself.

Modified: Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/lib/Catalyst/Action/Serialize/SimpleExcel.pm
===================================================================
--- Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/lib/Catalyst/Action/Serialize/SimpleExcel.pm	2011-01-05 09:39:55 UTC (rev 13909)
+++ Catalyst-Action-Serialize-SimpleExcel/1.000/trunk/lib/Catalyst/Action/Serialize/SimpleExcel.pm	2011-01-05 09:49:03 UTC (rev 13910)
@@ -14,7 +14,7 @@
 
 =cut
 
-our $VERSION = '0.014';
+our $VERSION = '0.015';
 
 =head1 SYNOPSIS
 




More information about the Catalyst-commits mailing list