[Catalyst-commits] r6915 - in trunk/Catalyst-Plugin-Cache-FileCache: . lib/Catalyst/Plugin/Cache

bricas at dev.catalyst.perl.org bricas at dev.catalyst.perl.org
Tue Sep 18 12:54:39 GMT 2007


Author: bricas
Date: 2007-09-18 12:54:39 +0100 (Tue, 18 Sep 2007)
New Revision: 6915

Removed:
   trunk/Catalyst-Plugin-Cache-FileCache/Build.PL
   trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST
   trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST.bak
   trunk/Catalyst-Plugin-Cache-FileCache/META.yml
Modified:
   trunk/Catalyst-Plugin-Cache-FileCache/Changes
   trunk/Catalyst-Plugin-Cache-FileCache/Makefile.PL
   trunk/Catalyst-Plugin-Cache-FileCache/README
   trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm
Log:
dist fixes. update deps. podcoverage fixes.

Deleted: trunk/Catalyst-Plugin-Cache-FileCache/Build.PL
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/Build.PL	2007-09-18 00:20:15 UTC (rev 6914)
+++ trunk/Catalyst-Plugin-Cache-FileCache/Build.PL	2007-09-18 11:54:39 UTC (rev 6915)
@@ -1,17 +0,0 @@
-use strict;
-use Module::Build;
-
-my $build = Module::Build->new(
-    create_makefile_pl => 'passthrough',
-    license            => 'perl',
-    module_name        => 'Catalyst::Plugin::Cache::FileCache',
-    requires           => {
-         'Cache::FileCache' => 0 
-    },
-    create_makefile_pl => 'passthrough',
-    test_files   => [
-        glob('t/*.t') 
-    ],
-    create_readme => 1,
-);
-$build->create_build_script;

Modified: trunk/Catalyst-Plugin-Cache-FileCache/Changes
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/Changes	2007-09-18 00:20:15 UTC (rev 6914)
+++ trunk/Catalyst-Plugin-Cache-FileCache/Changes	2007-09-18 11:54:39 UTC (rev 6915)
@@ -1,6 +1,10 @@
 Revision history for Perl extension Catalyst::Plugin::Cache::FileCache
+
+0.07  2007-09-18
+        - Fix missing Class::Data::Inheritable dependency
+
 0.06  2007-04-29 02:13:00
         - Switch to Module::Install
 
-0.5  Tue Apr 23 01:00:00 2005
+0.5   2005-04-23 01:00:00
         - original version.

Deleted: trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST	2007-09-18 00:20:15 UTC (rev 6914)
+++ trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST	2007-09-18 11:54:39 UTC (rev 6915)
@@ -1,9 +0,0 @@
-Changes
-lib/Catalyst/Plugin/Cache/FileCache.pm
-Makefile.PL
-MANIFEST			This list of files
-META.yml
-README
-t/01use.t
-t/02pod.t
-t/03podcoverage.t

Deleted: trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST.bak
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST.bak	2007-09-18 00:20:15 UTC (rev 6914)
+++ trunk/Catalyst-Plugin-Cache-FileCache/MANIFEST.bak	2007-09-18 11:54:39 UTC (rev 6915)
@@ -1,5 +0,0 @@
-Build.PL
-Changes
-lib/Catalyst/Plugin/Cache/FileCache.pm
-MANIFEST			This list of files
-META.yml

Deleted: trunk/Catalyst-Plugin-Cache-FileCache/META.yml
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/META.yml	2007-09-18 00:20:15 UTC (rev 6914)
+++ trunk/Catalyst-Plugin-Cache-FileCache/META.yml	2007-09-18 11:54:39 UTC (rev 6915)
@@ -1,16 +0,0 @@
----
-name: Catalyst-Plugin-Cache-FileCache
-version: 0.5
-author:
-  - |-
-    Christian Hansen, C<ch at ngmedia.com>
-    Sebastian Riedel C<sri at oook.de>
-abstract: File cache
-license: perl
-requires:
-  Cache::FileCache: 0
-provides:
-  Catalyst::Plugin::Cache::FileCache:
-    file: lib/Catalyst/Plugin/Cache/FileCache.pm
-    version: 0.5
-generated_by: Module::Build version 0.26

Modified: trunk/Catalyst-Plugin-Cache-FileCache/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/Makefile.PL	2007-09-18 00:20:15 UTC (rev 6914)
+++ trunk/Catalyst-Plugin-Cache-FileCache/Makefile.PL	2007-09-18 11:54:39 UTC (rev 6915)
@@ -1,12 +1,14 @@
 use strict;
 use warnings;
-use inc::Module::Install 0.65;
 
+use inc::Module::Install 0.67;
+
 name 'Catalyst-Plugin-Cache-FileCache';
 all_from 'lib/Catalyst/Plugin/Cache/FileCache.pm';
 
 requires 'Catalyst::Runtime' => '5.7006';
 requires 'Cache::FileCache';
+requires 'Class::Data::Inheritable';
 
 auto_install;
 WriteAll;

Modified: trunk/Catalyst-Plugin-Cache-FileCache/README
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/README	2007-09-18 00:20:15 UTC (rev 6914)
+++ trunk/Catalyst-Plugin-Cache-FileCache/README	2007-09-18 11:54:39 UTC (rev 6915)
@@ -20,8 +20,9 @@
     Extends base class with a file cache.
 
 METHODS
-    cache
-        Returns an instance of "Cache::FileCache"
+  setup
+  cache
+    Returns an instance of "Cache::FileCache"
 
 SEE ALSO
     Cache::FileCache, Catalyst.

Modified: trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm
===================================================================
--- trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm	2007-09-18 00:20:15 UTC (rev 6914)
+++ trunk/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm	2007-09-18 11:54:39 UTC (rev 6915)
@@ -3,7 +3,7 @@
 use strict;
 use base 'Class::Data::Inheritable';
 
-our $VERSION='0.6';
+our $VERSION = '0.7';
 
 use Cache::FileCache;
 
@@ -63,14 +63,12 @@
 
 =head1 METHODS
 
-=over 4
+=head2 setup
 
-=item cache
+=head2 cache
 
 Returns an instance of C<Cache::FileCache>
 
-=back
-
 =head1 SEE ALSO
 
 L<Cache::FileCache>, L<Catalyst>.




More information about the Catalyst-commits mailing list