File Coverage

blib/lib/Catalyst/Plugin/Compress/Zlib.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Catalyst::Plugin::Compress::Zlib;
2 1     1   741 use strict;
  1         3  
  1         33  
3 1     1   5 use warnings;
  1         1  
  1         32  
4 1     1   11 use base 'Catalyst::Plugin::Compress::Gzip';
  1         2  
  1         500  
5              
6             our $VERSION = '0.06';
7              
8             1;
9              
10             __END__
11              
12             =head1 NAME
13              
14             Catalyst::Plugin::Compress::Zlib - DEPRECATED Zlib Compression for Catalyst
15              
16             =head1 SYNOPSIS
17              
18             use Catalyst qw[Compress::Zlib];
19             # NOTE - DEPRECATED, supported for legacy applications,
20             # but use Catalyst::Plugin::Compress in new code.
21              
22             =head1 DESCRIPTION
23              
24             B<DEPRECATED> - supported for legacy applications, but useL<Catalyst::Plugin::Compress> in new code.
25              
26             Compress response if client supports it.
27              
28             =head1 SEE ALSO
29              
30             L<Catalyst>.
31              
32             =head1 AUTHOR
33              
34             Christian Hansen, C<ch@ngmedia.com>
35              
36             =head1 LICENSE
37              
38             This library is free software . You can redistribute it and/or modify it under
39             the same terms as perl itself.
40              
41             =cut