File Coverage

blib/lib/Git/Raw/Odb/Backend/Pack.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 Git::Raw::Odb::Backend::Pack;
2             $Git::Raw::Odb::Backend::Pack::VERSION = '0.90';
3 36     36   216 use strict;
  36         69  
  36         965  
4 36     36   169 use warnings;
  36         59  
  36         742  
5              
6 36     36   161 use Git::Raw;
  36         67  
  36         1175  
7              
8             =head1 NAME
9              
10             Git::Raw::Odb::Backend::Pack - Git packed object database backend class
11              
12             =head1 VERSION
13              
14             version 0.90
15              
16             =head1 DESCRIPTION
17              
18             A L represents a git packed object database backend.
19              
20             B: The API of this module is unstable and may change without warning
21             (any change will be appropriately documented in the changelog).
22              
23             =head1 METHODS
24              
25             =head2 new( $directory )
26              
27             Create a backend for the packfiles.
28              
29             =head1 AUTHOR
30              
31             Jacques Germishuys
32              
33             =head1 LICENSE AND COPYRIGHT
34              
35             Copyright 2016 Jacques Germishuys.
36              
37             This program is free software; you can redistribute it and/or modify it
38             under the terms of either: the GNU General Public License as published
39             by the Free Software Foundation; or the Artistic License.
40              
41             See http://dev.perl.org/licenses/ for more information.
42              
43             =cut
44              
45             1; # End of Git::Raw::Odb::Backend::Pack