From: Tomas Doran (t0m) Date: Mon, 28 Sep 2009 14:02:20 +0000 (+0100) Subject: Require Moose for tests X-Git-Tag: 0.78~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Action-REST.git;a=commitdiff_plain;h=5ebf67a4e3bdd642e22dfad78eca007941a52747 Require Moose for tests --- diff --git a/Changes b/Changes index c0753f8..cc7148f 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,7 @@ +Mon 28 Sep 15:01:03 BST 2009 - Release 0.78 + + Require Moose for the tests (RT#50066). + Thu 27 Aug 02:21:09 BST 2009 - Release 0.77 Allow dispatching to Catalyst Actions, for use with ActionClasses diff --git a/Makefile.PL b/Makefile.PL index cd8b295..8012cd2 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -15,6 +15,8 @@ requires('Class::Inspector' => '1.13'); requires('URI::Find' => undef); requires('MRO::Compat' => '0.10'); +test_requires 'Moose'; + feature 'JSON (application/json) support', -default => 0, 'JSON' => '2.12';