File Coverage

blib/lib/Git/Raw/Odb/Backend/Loose.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::Loose;
2             $Git::Raw::Odb::Backend::Loose::VERSION = '0.86';
3 35     35   224 use strict;
  35         69  
  35         956  
4 35     35   176 use warnings;
  35         970  
  35         1079  
5              
6 35     35   252 use Git::Raw;
  35         83  
  35         1172  
7              
8             =head1 NAME
9              
10             Git::Raw::Odb::Backend::Loose - Git loose object database backend class
11              
12             =head1 VERSION
13              
14             version 0.86
15              
16             =head1 DESCRIPTION
17              
18             A L represents a git loose 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, [$compression_level] )
26              
27             Create a backend for loose objects.
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::Loose