File Coverage

blib/lib/Apache2/Controller.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Apache2::Controller;
2              
3             =encoding utf8
4              
5             =head1 NAME
6              
7             Apache2::Controller - fast MVC-style Apache2 handler apps
8              
9             =head1 VERSION
10              
11             Version 1.001.001
12              
13             =cut
14              
15 1     1   46456 use version;
  1         2529  
  1         5  
16             our $VERSION = version->new('1.001.001');
17              
18             =head1 INSTALLATION PRE-REQUISITES
19              
20             You need mod_perl2, L and L installed to
21             build this distribution with CPAN.
22             Otherwise the Makefile.PL will not run
23             to tell you that prerequisites failed.
24             This is a drawback of using L.
25              
26             =head1 SYNOPSIS
27              
28             The handler IS the controller. A2C gets all the
29             abstractions out from between your controller logic and
30             the Apache2 methods to control input/output, status etc.
31             You control Apache2 directly, or use a rendering base like
32             L which gives a method
33             to render using L