removed trailing whitespace from TT.pm
[catagits/Catalyst-View-TT.git] / lib / Catalyst / Helper / View / TT.pm
CommitLineData
8077080c 1package Catalyst::Helper::View::TT;
2
3use strict;
8077080c 4
5=head1 NAME
6
7Catalyst::Helper::View::TT - Helper for TT Views
8
9=head1 SYNOPSIS
10
c90b1329 11 script/create.pl view TT TT
8077080c 12
13=head1 DESCRIPTION
14
15Helper for TT Views.
16
17=head2 METHODS
18
19=head3 mk_compclass
20
21=cut
22
23sub mk_compclass {
24 my ( $self, $helper ) = @_;
d97e9999 25 my $file = $helper->{file};
dc617c0e 26 $helper->render_file( 'compclass', $file );
d97e9999 27}
8077080c 28
d97e9999 29=head1 SEE ALSO
8077080c 30
d97e9999 31L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
32L<Catalyst::Response>, L<Catalyst::Helper>
8077080c 33
34=head1 AUTHOR
35
d97e9999 36Sebastian Riedel, C<sri@oook.de>
5be63f44 37Marcus Ramberg, C<mramberg@cpan.org>
8077080c 38
39=head1 LICENSE
40
7bee9bfc 41This library is free software . You can redistribute it and/or modify
42it under the same terms as perl itself.
8077080c 43
44=cut
45
461;
8077080c 47
d97e9999 48__DATA__
8077080c 49
d97e9999 50__compclass__
51package [% class %];
52
53use strict;
6229ce0d 54use warnings;
55
d97e9999 56use base 'Catalyst::View::TT';
57
5be63f44 58__PACKAGE__->config(TEMPLATE_EXTENSION => '.tt');
d97e9999 59
5be63f44 60=head1 NAME
d97e9999 61
5be63f44 62[% class %] - TT View for [% app %]
d97e9999 63
64=head1 DESCRIPTION
65
5be63f44 66TT View for [% app %].
8077080c 67
5be63f44 68=head1 SEE ALSO
69
70L<[% app %]>
71
740cab99 72=head1 AUTHOR
73
bd9d89ad 74[% author %]
8077080c 75
76=head1 LICENSE
77
7d8aa5ec 78This library is free software, you can redistribute it and/or modify
79it under the same terms as Perl itself.
8077080c 80
81=cut
82
831;