X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FCatalystAndMoose.pod;h=cf2acd93bf6a32bbf0ca3b9010c14b8cb5ee44a8;hp=e2a0cfd1a647910d90a3142af4486e69d9284ff0;hb=2ad51a61c60529a1d41fee9ca852dcb3a43aaf66;hpb=bbddff000787154dd9130f45634da8ef06529d86 diff --git a/lib/Catalyst/Manual/CatalystAndMoose.pod b/lib/Catalyst/Manual/CatalystAndMoose.pod index e2a0cfd..cf2acd9 100644 --- a/lib/Catalyst/Manual/CatalystAndMoose.pod +++ b/lib/Catalyst/Manual/CatalystAndMoose.pod @@ -4,13 +4,13 @@ Catalyst::Manual::CatalystAndMoose - How Catalyst 5.8+ and Moose relate =head1 DESCRIPTION -Since version 5.8 the core of Catalyst is based on L. Although +Since version 5.8, the core of Catalyst is based on L. Although the developers went through great lengths to allow for a seamless transition, there are still a few things to keep in mind when trying to exploit the power of L in your Catalyst application. This document provides you with a short overview of common caveats and -best practices to use L-based classes within Catalyst. +best practices for using L-based classes within Catalyst. =head1 THE CONTEXT CLASS @@ -137,10 +137,10 @@ themselves. For example }; It is possible to have action methods with attributes inside Moose roles, using -the trait introduced in L version 0.12, example: +L, example: package MyApp::ControllerRole; - use Moose::Role -traits => 'MethodAttributes'; + use MooseX::MethodAttribute::Role; use namespace::autoclean; sub foo : Local {