line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Git::Raw::Odb::Backend::Loose; |
2
|
|
|
|
|
|
|
$Git::Raw::Odb::Backend::Loose::VERSION = '0.90'; |
3
|
36
|
|
|
36
|
|
217
|
use strict; |
|
36
|
|
|
|
|
66
|
|
|
36
|
|
|
|
|
932
|
|
4
|
36
|
|
|
36
|
|
173
|
use warnings; |
|
36
|
|
|
|
|
1035
|
|
|
36
|
|
|
|
|
1051
|
|
5
|
|
|
|
|
|
|
|
6
|
36
|
|
|
36
|
|
218
|
use Git::Raw; |
|
36
|
|
|
|
|
64
|
|
|
36
|
|
|
|
|
1168
|
|
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.90 |
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 |