Bumping version to 0.43; add $VERSION to all modules
[catagits/Catalyst-View-TT.git] / lib / Catalyst / Helper / View / TT.pm
index 999b527..1c15284 100644 (file)
@@ -2,13 +2,16 @@ package Catalyst::Helper::View::TT;
 
 use strict;
 
+our $VERSION = '0.43';
+$VERSION = eval $VERSION;
+
 =head1 NAME
 
 Catalyst::Helper::View::TT - Helper for TT Views
 
 =head1 SYNOPSIS
 
-    script/create.pl view TT TT
+    script/create.pl view HTML TT
 
 =head1 DESCRIPTION
 
@@ -34,6 +37,7 @@ L<Catalyst::Response>, L<Catalyst::Helper>
 =head1 AUTHOR
 
 Sebastian Riedel, C<sri@oook.de>
+Marcus Ramberg, C<mramberg@cpan.org>
 
 =head1 LICENSE
 
@@ -48,21 +52,27 @@ __DATA__
 
 __compclass__
 package [% class %];
+use Moose;
+use namespace::autoclean;
 
-use strict;
-use base 'Catalyst::View::TT';
+extends 'Catalyst::View::TT';
+
+__PACKAGE__->config(
+    TEMPLATE_EXTENSION => '.tt',
+    render_die => 1,
+);
 
 =head1 NAME
 
-[% class %] - Catalyst TT View
+[% class %] - TT View for [% app %]
 
-=head1 SYNOPSIS
+=head1 DESCRIPTION
 
-See L<[% app %]>
+TT View for [% app %].
 
-=head1 DESCRIPTION
+=head1 SEE ALSO
 
-Catalyst TT View.
+L<[% app %]>
 
 =head1 AUTHOR
 
@@ -70,7 +80,7 @@ Catalyst TT View.
 
 =head1 LICENSE
 
-This library is free software, you can redistribute it and/or modify
+This library is free software. You can redistribute it and/or modify
 it under the same terms as Perl itself.
 
 =cut