Make everything which used to inherit CAF use the MX::Emulate::CAF role + test
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Response.pm
index 8c5cc50..d417512 100644 (file)
@@ -3,6 +3,8 @@ package Catalyst::Response;
 use Moose;
 use HTTP::Headers;
 
+with 'MooseX::Emulate::Class::Accessor::Fast';
+
 has cookies   => (is => 'rw', default => sub { {} });
 has body      => (is => 'rw', default => '');
 has location  => (is => 'rw');