File Coverage

blib/lib/Tail/Tool/PostProcess.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Tail::Tool::PostProcess;
2              
3             # Created on: 2010-10-22 14:45:45
4             # Create by: Ivan Wills
5             # $Id$
6             # $Revision$, $HeadURL$, $Date$
7             # $Revision$, $Source$, $Date$
8              
9 3     3   2056 use Moose;
  3         296023  
  3         20  
10 3     3   13974 use warnings;
  3         5  
  3         89  
11 3     3   650 use version;
  3         1483  
  3         18  
12 3     3   543 use English qw/ -no_match_vars /;
  3         1296  
  3         15  
13              
14             our $VERSION = version->new('0.4.7');
15              
16             has post => (
17             is => 'ro',
18             isa => 'Bool',
19             default => 1,
20             );
21             has many => (
22             is => 'ro',
23             isa => 'Bool',
24             default => 1,
25             init_arg => undef,
26             );
27              
28              
29             1;
30              
31             __END__
32              
33             =head1 NAME
34              
35             Tail::Tool::PostProcess - The parent module for plugins that change individual lines. eg highlighting
36              
37             =head1 VERSION
38              
39             This documentation refers to Tail::Tool::PostProcess version 0.4.7.
40              
41             =head1 SYNOPSIS
42              
43             # This module is for other to extend it doesn't do anything it self.
44             extends 'Tail::Tool::PostProcess';
45              
46             =head1 DESCRIPTION
47              
48             =head1 SUBROUTINES/METHODS
49              
50             =head1 DIAGNOSTICS
51              
52             =head1 CONFIGURATION AND ENVIRONMENT
53              
54             =head1 DEPENDENCIES
55              
56             =head1 INCOMPATIBILITIES
57              
58             =head1 BUGS AND LIMITATIONS
59              
60             There are no known bugs in this module.
61              
62             Please report problems to Ivan Wills (ivan.wills@gamil.com).
63              
64             Patches are welcome.
65              
66             =head1 AUTHOR
67              
68             Ivan Wills - (ivan.wills@gamil.com)
69             <Author name(s)> (<contact address>)
70              
71             =head1 LICENSE AND COPYRIGHT
72              
73             Copyright (c) 2010 Ivan Wills (14 Mullion Close, Hornsby Heights, NSW, Australia, 2077).
74             All rights reserved.
75              
76             This module is free software; you can redistribute it and/or modify it under
77             the same terms as Perl itself. See L<perlartistic>. This program is
78             distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
79             without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
80             PARTICULAR PURPOSE.
81              
82             =cut