File Coverage

blib/lib/App/PS1/Plugin/Processes.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 App::PS1::Plugin::Processes;
2              
3             # Created on: 2011-06-21 09:48:58
4             # Create by: Ivan Wills
5             # $Id$
6             # $Revision$, $HeadURL$, $Date$
7             # $Revision$, $Source$, $Date$
8              
9 1     1   1003 use strict;
  1         3  
  1         31  
10 1     1   6 use warnings;
  1         2  
  1         29  
11 1     1   5 use English qw/ -no_match_vars /;
  1         3  
  1         5  
12              
13             our $VERSION = 0.08;
14              
15             1;
16              
17             __END__
18              
19             =head1 NAME
20              
21             App::PS1::Plugin::Processes - Running processes to prompt
22              
23             =head1 VERSION
24              
25             This documentation refers to App::PS1::Plugin::Processes version 0.08.
26              
27             =head1 SYNOPSIS
28              
29             use App::PS1::Plugin::Processes;
30              
31             # Brief but working code example(s) here showing the most common usage(s)
32             # This section will be as far as many users bother reading, so make it as
33             # educational and exemplary as possible.
34              
35              
36             =head1 DESCRIPTION
37              
38             =head1 SUBROUTINES/METHODS
39              
40             =head3 C<processes ()>
41              
42             Returns info about running processes
43              
44             =head1 DIAGNOSTICS
45              
46             =head1 CONFIGURATION AND ENVIRONMENT
47              
48             =head1 DEPENDENCIES
49              
50             =head1 INCOMPATIBILITIES
51              
52             =head1 BUGS AND LIMITATIONS
53              
54             There are no known bugs in this module.
55              
56             Please report problems to Ivan Wills (ivan.wills@gmail.com).
57              
58             Patches are welcome.
59              
60             =head1 AUTHOR
61              
62             Ivan Wills - (ivan.wills@gmail.com)
63              
64             =head1 LICENSE AND COPYRIGHT
65              
66             Copyright (c) 2011 Ivan Wills (14 Mullion Close, Hornsby Heights, NSW, Australia 2077)
67             All rights reserved.
68              
69             This module is free software; you can redistribute it and/or modify it under
70             the same terms as Perl itself. See L<perlartistic>. This program is
71             distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
72             without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
73             PARTICULAR PURPOSE.
74              
75             =cut