]>
iEval git - plack-app-gruntmaster.git/blob - lib/Gruntmaster/Page/JS.pm
9e78192d0b12575b9107cf57f3207330da93c19b
1 package Gruntmaster
::Page
::JS
;
6 use Gruntmaster
::Page
::Base
;
7 our @ISA = qw
/Gruntmaster::Page::Base/;
8 our $VERSION = '0.001';
10 use File
::Slurp qw
/read_file/;
11 use JavaScript
::Minifier
::XS qw
/minify/;
14 my ($self, $format, $env) = @_;
17 $js .= read_file
$_ for <js
/*.js
>;
18 [200, ['Content-Type' => 'application/javascript', 'Cache-Control' => 'public, max-age=604800', 'X-Forever' => 1], [$js] ]
21 sub variants
{ [[js
=> 1, 'application/javascript', undef, undef, undef, undef]] }
This page took 0.043551 seconds and 4 git commands to generate.