File Coverage

blib/lib/App/Git/Workflow/Extra.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package App::Git::Workflow::Extra;
2              
3             # Created on: 2015-04-12 10:03:52
4             # Create by: Ivan Wills
5             # $Id$
6             # $Revision$, $HeadURL$, $Date$
7             # $Revision$, $Source$, $Date$
8              
9 1     1   18112 use strict;
  1         2  
  1         28  
10 1     1   4 use warnings;
  1         2  
  1         31  
11 1     1   6 use Carp;
  1         5  
  1         79  
12 1     1   767 use Data::Dumper qw/Dumper/;
  1         8830  
  1         101  
13 1     1   645 use English qw/ -no_match_vars /;
  1         3714  
  1         7  
14 1     1   486 use base qw/Exporter/;
  1         1  
  1         111  
15              
16             our $VERSION = 0.3;
17              
18             1;
19              
20             __END__
21              
22             =head1 NAME
23              
24             App::Git::Workflow::Extra - A collection of extra Group::Git commands
25              
26             =head1 VERSION
27              
28             This documentation refers to App::Git::Workflow::Extra version 0.0.3
29              
30             =head1 SYNOPSIS
31              
32             use App::Git::Workflow::Extra;
33              
34             # Does nothing
35              
36             =head1 DESCRIPTION
37              
38             This builds on L<App::Git::Workflow> to add more commands which may have less
39             broad appeal. It does this by depending on all the seperate extra commands
40             which get installed along with this module.
41              
42             =head1 SUBROUTINES/METHODS
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) 2015 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