| Gitalist documentation | Contained in the Gitalist distribution. |
Gitalist::Git::Object::Tree
my $tree = Repository->get_object($tree_sha1);
Represents a tree object in a git repository.
Subclass of Gitalist::Git::Object.
See Gitalist for authors.
See Gitalist for the license.
| Gitalist documentation | Contained in the Gitalist distribution. |
package Gitalist::Git::Object::Tree; use MooseX::Declare; class Gitalist::Git::Object::Tree extends Gitalist::Git::Object with Gitalist::Git::Object::HasTree { has '+type' => ( default => 'tree' ); has '+_gpp_obj' => ( handles => [ 'directory_entries', ], ); } 1; __END__