[Catalyst-commits] r9110 - in trunk/Catalyst-Plugin-Images: . lib/Catalyst/Plugin

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Tue Jan 20 00:05:29 GMT 2009


Author: t0m
Date: 2009-01-20 00:05:28 +0000 (Tue, 20 Jan 2009)
New Revision: 9110

Added:
   trunk/Catalyst-Plugin-Images/.shipit
   trunk/Catalyst-Plugin-Images/Makefile.PL
Removed:
   trunk/Catalyst-Plugin-Images/Build.PL
Modified:
   trunk/Catalyst-Plugin-Images/
   trunk/Catalyst-Plugin-Images/Changes
   trunk/Catalyst-Plugin-Images/MANIFEST.SKIP
   trunk/Catalyst-Plugin-Images/lib/Catalyst/Plugin/Images.pm
Log:
Checking in changes prior to tagging of version 0.02.  Changelog diff is:

Index: Changes
===================================================================
--- Changes	(revision 8942)
+++ Changes	(working copy)
@@ -1,2 +1,8 @@
+0.02
+    - Switch to Module::Install
+    - Require TWMC in Makefile.PL (RT#42453)
+    - Fix POD
+    - Switch from NEXT to MRO::Compat's next::method
+    
 0.01
     - Initial release



Property changes on: trunk/Catalyst-Plugin-Images
___________________________________________________________________
Name: svn:ignore
   + META.yml
Makefile
Makefile.old
MANIFEST
inc
blib
pm_to_blib
.*.swp


Added: trunk/Catalyst-Plugin-Images/.shipit
===================================================================
--- trunk/Catalyst-Plugin-Images/.shipit	                        (rev 0)
+++ trunk/Catalyst-Plugin-Images/.shipit	2009-01-20 00:05:28 UTC (rev 9110)
@@ -0,0 +1,3 @@
+steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN
+svn.tagpattern = http://dev.catalyst.perl.org/repos/Catalyst/tags/Catalyst-Plugin-Images/%v
+CheckChangeLog.files = Changes

Deleted: trunk/Catalyst-Plugin-Images/Build.PL
===================================================================
--- trunk/Catalyst-Plugin-Images/Build.PL	2009-01-19 18:41:41 UTC (rev 9109)
+++ trunk/Catalyst-Plugin-Images/Build.PL	2009-01-20 00:05:28 UTC (rev 9110)
@@ -1,19 +0,0 @@
-use strict;
-use Module::Build;
-
-my $build = Module::Build->new(
-    create_makefile_pl => 'traditional',
-    license            => 'perl',
-    module_name        => 'Catalyst::Plugin::Images',
-    requires           => {
-        'perl'           => '5.8.1',
-        'Catalyst'       => '5.5',
-        'Image::Size'    => 0,
-        'Path::Class'    => 0,
-        'HTML::Entities' => 0,
-    },
-    create_readme => 1,
-    sign          => 1,
-);
-$build->create_build_script;
-

Modified: trunk/Catalyst-Plugin-Images/Changes
===================================================================
--- trunk/Catalyst-Plugin-Images/Changes	2009-01-19 18:41:41 UTC (rev 9109)
+++ trunk/Catalyst-Plugin-Images/Changes	2009-01-20 00:05:28 UTC (rev 9110)
@@ -1,2 +1,8 @@
+0.02
+    - Switch to Module::Install
+    - Require TWMC in Makefile.PL (RT#42453)
+    - Fix POD
+    - Switch from NEXT to MRO::Compat's next::method
+    
 0.01
     - Initial release

Modified: trunk/Catalyst-Plugin-Images/MANIFEST.SKIP
===================================================================
--- trunk/Catalyst-Plugin-Images/MANIFEST.SKIP	2009-01-19 18:41:41 UTC (rev 9109)
+++ trunk/Catalyst-Plugin-Images/MANIFEST.SKIP	2009-01-20 00:05:28 UTC (rev 9110)
@@ -27,3 +27,5 @@
 
 \.DS_Store$
 \.tar\.gz$
+
+.shipit
\ No newline at end of file

Added: trunk/Catalyst-Plugin-Images/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-Images/Makefile.PL	                        (rev 0)
+++ trunk/Catalyst-Plugin-Images/Makefile.PL	2009-01-20 00:05:28 UTC (rev 9110)
@@ -0,0 +1,15 @@
+use inc::Module::Install;
+
+license     'perl';
+name        'Catalyst-Plugin-Images';
+all_from    'lib/Catalyst/Plugin/Images.pm';
+perl_version '5.8.1';
+requires 'Catalyst'       => '5.70';
+requires 'Image::Size';
+requires 'Path::Class';
+requires 'HTML::Entities';
+requires 'MRO::Compat';
+test_requires 'Test::WWW::Mechanize::Catalyst';
+
+WriteAll;
+

Modified: trunk/Catalyst-Plugin-Images/lib/Catalyst/Plugin/Images.pm
===================================================================
--- trunk/Catalyst-Plugin-Images/lib/Catalyst/Plugin/Images.pm	2009-01-19 18:41:41 UTC (rev 9109)
+++ trunk/Catalyst-Plugin-Images/lib/Catalyst/Plugin/Images.pm	2009-01-20 00:05:28 UTC (rev 9110)
@@ -7,14 +7,14 @@
 
 use Image::Size ();
 use HTML::Entities ();
-
 use Path::Class ();
+use MRO::Compat;
 
-our $VERSION = "0.01";
+our $VERSION = "0.02";
 
 sub setup {
     my $app = shift;
-    my $ret = $app->NEXT::setup( @_ );
+    my $ret = $app->next::method( @_ );
 
     $app->config->{images}{paths} ||= [
         $app->path_to(qw/root static/),
@@ -165,7 +165,7 @@
 =item image_path_to_uri $path, $basename
 
 Generates a URI using L<Catalyst/uri_for>, with the absolute path C<$path>
-relativized to C<uri_base>. See </CONFIGURATION>.
+relativized to C<uri_base>. See L</CONFIGURATION>.
 
 =item get_cached_image_info
 
@@ -223,6 +223,8 @@
 
 Yuval Kogman, C<nothingmuch at woobling.org>
 
+Last released by Tomas Doran, C<bobtfish at bobtfish.net>
+
 =head1 LICENSE
 
 This library is free software, you can redistribute it and/or modify it under




More information about the Catalyst-commits mailing list