From e7d2870c35a1a7d09832a7a82c7b1a53a8eb80c6 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 8 Mar 2013 18:19:35 -0600 Subject: docs --- lib/OX/View/TT.pm | 102 ++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 79 insertions(+), 23 deletions(-) diff --git a/lib/OX/View/TT.pm b/lib/OX/View/TT.pm index 7fc3f0d..5e11579 100644 --- a/lib/OX/View/TT.pm +++ b/lib/OX/View/TT.pm @@ -1,9 +1,47 @@ package OX::View::TT; use Moose; +# ABSTRACT: View wrapper class for TT renderers use MooseX::Types::Path::Class; use Template; +=head1 SYNOPSIS + + package MyApp; + use OX; + + has view => ( + is => 'ro', + isa => 'OX::View::TT', + dependencies => ['template_root'], + ); + +=head1 DESCRIPTION + +This is a very thin wrapper around L