File: Pkgconfig.pm

package info (click to toggle)
libcatalyst-view-tt-perl 0.34-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 324 kB
  • ctags: 164
  • sloc: perl: 2,324; makefile: 4
file content (12 lines) | stat: -rwxr-xr-x 202 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
package TestApp::View::TT::Pkgconfig;

use strict;
use base 'Catalyst::View::TT';

__PACKAGE__->config(
    PRE_CHOMP          => 1,
    POST_CHOMP         => 1,
    TEMPLATE_EXTENSION => '.tt',
);

1;