NAME

   Catalyst::ActionRole::Renderer - Rendering views for Catalyst action

SYNOPSIS

     package MyApp::Controller::Root;
     use Moose;
     use namespace::autoclean;

     BEGIN { extends 'Catalyst::Controller'; }

     sub lookup :GET Args(1) :Does(Renderer) :View(TT) {
         my ( $self, $c ) = @_;
     }

DESCRIPTION

   Catalyst::ActionRole::Renderer is rendering views for Catalyst action

SEE ALSO

   Catalyst::View

   Catalyst::ActionRole

AUTHOR

   Masaaki Saito <[email protected]>

COPYRIGHT

   Copyright 2017- Masaaki Saito

LICENSE

   This library is free software; you can redistribute it and/or modify it
   under the same terms as Perl itself.

SEE ALSO