s/Catalyst::Component::Role::CaptureApp/Catalyst::Component::ApplicationAttribute/g
Florian Ragwitz [Sun, 28 Dec 2008 14:14:25 +0000 (14:14 +0000)]
Changes
lib/Catalyst/Component/ApplicationAttribute.pm [moved from lib/Catalyst/Component/Role/CaptureApp.pm with 88% similarity]
lib/Catalyst/Controller.pm

diff --git a/Changes b/Changes
index 2a2ecba..f1cf48b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -20,7 +20,7 @@
         - Change streaming test to serve itself rather than 01use.t, making 
           test sync for engines easier (t0m)
         - Refactor capturing of $app from Catalyst::Controller into
-          Catalyst::Component::Role::CaptureApp for easier reuse in other
+          Catalyst::Component::ApplicationAttribute for easier reuse in other
           components (Florian Ragwitz)
         - Make the test suites YAML dependency optional (Florian Ragwitz)
         - Make debug output show class name for the engine and dispatcher
similarity index 88%
rename from lib/Catalyst/Component/Role/CaptureApp.pm
rename to lib/Catalyst/Component/ApplicationAttribute.pm
index 54da050..73dc401 100644 (file)
@@ -1,4 +1,4 @@
-package Catalyst::Component::Role::CaptureApp;
+package Catalyst::Component::ApplicationAttribute;
 
 use Moose::Role;
 use namespace::clean -except => 'meta';
index 5c2267a..116991a 100644 (file)
@@ -9,7 +9,7 @@ use Scalar::Util qw/blessed/;
 use Catalyst::Exception;
 use Catalyst::Utils;
 
-with 'Catalyst::Component::Role::CaptureApp';
+with 'Catalyst::Component::ApplicationAttribute';
 
 has path_prefix =>
     (