From: Florian Ragwitz Date: Sun, 20 Sep 2009 14:01:51 +0000 (+0000) Subject: Use clean instead of autoclean in the ContextClosure synopsis until we've fixed the... X-Git-Tag: 5.80014~44 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=9a991f0e7c8404d211409ebcdb3b1d69ae1c2c6c Use clean instead of autoclean in the ContextClosure synopsis until we've fixed the issues with that and MXMA. --- diff --git a/lib/Catalyst/Component/ContextClosure.pm b/lib/Catalyst/Component/ContextClosure.pm index fb2606c..18d09b7 100644 --- a/lib/Catalyst/Component/ContextClosure.pm +++ b/lib/Catalyst/Component/ContextClosure.pm @@ -22,7 +22,7 @@ Catalyst::Component::ContextClosure - Moose Role for components which need to cl package MyApp::Controller::Foo; use Moose; - use namespace::autoclean; + use namespace::clean -except => 'meta'; BEGIN { extends 'Catalyst::Controller'; with 'Catalyst::Component::ContextClosure';