[Catalyst-commits] r11411 - in trunk/Catalyst-Plugin-Authorization-ACL: . lib/Catalyst/Plugin/Authorization

caelum at dev.catalyst.perl.org caelum at dev.catalyst.perl.org
Fri Sep 25 09:38:45 GMT 2009


Author: caelum
Date: 2009-09-25 09:38:44 +0000 (Fri, 25 Sep 2009)
New Revision: 11411

Modified:
   trunk/Catalyst-Plugin-Authorization-ACL/Changes
   trunk/Catalyst-Plugin-Authorization-ACL/Makefile.PL
   trunk/Catalyst-Plugin-Authorization-ACL/lib/Catalyst/Plugin/Authorization/ACL.pm
Log:
add test_requires

Modified: trunk/Catalyst-Plugin-Authorization-ACL/Changes
===================================================================
--- trunk/Catalyst-Plugin-Authorization-ACL/Changes	2009-09-25 09:33:50 UTC (rev 11410)
+++ trunk/Catalyst-Plugin-Authorization-ACL/Changes	2009-09-25 09:38:44 UTC (rev 11411)
@@ -1,39 +1,44 @@
 Revision history for Perl extension Catalyst::Plugin::Authorization::ACL
 
-0.11    2009-04-21
+0.12  2009-09-25 09:35:51
+        - workaround for a test failure on some configurations of Strawberry
+        Perl
+        - add test_requires for things the tests depend on
+
+0.11  2009-04-21
         - switch from NEXT to MRO::Compat
 
-0.10    2008-10-13
+0.10  2008-10-13
         - fix access_denied action support
 
-0.09    2008-08-22
+0.09  2008-08-22
         - fix the overwriting of $c->req->args for access_denied handlers
 
-0.08    2006-07-21 20:01:00
+0.08  2006-07-21 20:01:00
         - protect ACL::Engine from custom $SIG{__DIE__} handlers
 
-0.07    2006-07-05 23:15:27
+0.07  2006-07-05 23:15:27
         - support for ACL setup in app config
         - bug fix for private access_denied action
 
-0.06    2005-12-25 20:37:00
+0.06  2005-12-25 20:37:00
         - Added forcibly_allow_access, proper denial handling
         - allow for constant conditions
         - i think there was something else
 
-0.05    2005-12-25 20:37:00
+0.05  2005-12-25 20:37:00
         - Forgot to changelog this release ;-)
 
-0.04    2005-12-08 10:15:00
+0.04  2005-12-08 10:15:00
         - Fix a bug with ACLs on "/"
 
-0.03    2005-12-04 22:07:00
+0.03  2005-12-04 22:07:00
         - Maybe some tiny doc fixes
         - No longer relies on Test::Plan which had some trouble with windows
           and was used incorrectly anyhow ;-)
 
-0.02    ???
+0.02  ???
         - can't recall, may have been drunk
 
-0.01    ???
+0.01  ???
         - Initial release.

Modified: trunk/Catalyst-Plugin-Authorization-ACL/Makefile.PL
===================================================================
--- trunk/Catalyst-Plugin-Authorization-ACL/Makefile.PL	2009-09-25 09:33:50 UTC (rev 11410)
+++ trunk/Catalyst-Plugin-Authorization-ACL/Makefile.PL	2009-09-25 09:38:44 UTC (rev 11411)
@@ -1,4 +1,4 @@
-use inc::Module::Install 0.87;
+use inc::Module::Install 0.91;
 
 if ( -e 'MANIFEST.SKIP' ) {
     system( 'pod2text lib/Catalyst/Plugin/Authorization/ACL.pm > README' );
@@ -9,21 +9,21 @@
 name 'Catalyst-Plugin-Authorization-ACL';
 all_from 'lib/Catalyst/Plugin/Authorization/ACL.pm';
 
+test_requires 'Test::More';
+test_requires 'Catalyst::Plugin::Authentication';
+test_requires 'Catalyst::Plugin::Authorization::Roles';
+test_requires 'Catalyst::Plugin::Session';
+test_requires 'Catalyst::Plugin::Session::State::Cookie';
+
 requires 'Catalyst::Runtime' => '5.7000';
 requires 'Class::Data::Inheritable';
 requires 'Class::Throwable';
 requires 'Tree::Simple::Visitor::FindByPath';
 requires 'Tree::Simple::Visitor::GetAllDescendents';
-
 requires 'MRO::Compat';
 
-if($] < 5.009_005) {
-    requires 'Class::C3::XS' => '0.08';
-    requires 'Class::C3' => '0.20';
-}
-
-test_requires 'Test::More';
-
 resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Plugin-Authorization-ACL/';
 
+auto_provides;
+auto_install;
 WriteAll;

Modified: trunk/Catalyst-Plugin-Authorization-ACL/lib/Catalyst/Plugin/Authorization/ACL.pm
===================================================================
--- trunk/Catalyst-Plugin-Authorization-ACL/lib/Catalyst/Plugin/Authorization/ACL.pm	2009-09-25 09:33:50 UTC (rev 11410)
+++ trunk/Catalyst-Plugin-Authorization-ACL/lib/Catalyst/Plugin/Authorization/ACL.pm	2009-09-25 09:38:44 UTC (rev 11411)
@@ -14,7 +14,7 @@
 
 BEGIN { __PACKAGE__->mk_classdata("_acl_engine") }
 
-our $VERSION = '0.11';
+our $VERSION = '0.12';
 
 my $FORCE_ALLOW = bless {}, __PACKAGE__ . "::Exception";
 




More information about the Catalyst-commits mailing list