fixing inline pod documentation for the debian package. (missing whatis entry)
[catagits/Gitalist.git] / lib / Gitalist / Git / Object / Tree.pm
1 package Gitalist::Git::Object::Tree;
2 use MooseX::Declare;
3
4 class Gitalist::Git::Object::Tree
5     extends Gitalist::Git::Object
6     with Gitalist::Git::Object::HasTree {
7         has '+type' => ( default => 'tree' );
8         has '+_gpp_obj' => ( handles => [ 'directory_entries',
9                                       ],
10                          );
11     }
12
13 1;
14
15 __END__
16
17 =head1 NAME
18
19 Gitalist::Git::Object::Tree - Git::Object::Tree module for Gitalist
20
21 =head1 SYNOPSIS
22
23     my $tree = Repository->get_object($tree_sha1);
24
25 =head1 DESCRIPTION
26
27 Represents a tree object in a git repository.
28 Subclass of C<Gitalist::Git::Object>.
29
30
31 =head1 ATTRIBUTES
32
33
34 =head1 METHODS
35
36
37 =head1 AUTHORS
38
39 See L<Gitalist> for authors.
40
41 =head1 LICENSE
42
43 See L<Gitalist> for the license.
44
45 =cut