Skip to content

Commit 14069e6

Browse files
committed
Improve documentation on Object::Commit
1 parent 5bd1abc commit 14069e6

File tree

1 file changed

+29
-5
lines changed

1 file changed

+29
-5
lines changed

lib/Git/PurePerl/Object/Commit.pm

+29-5
Original file line numberDiff line numberDiff line change
@@ -63,28 +63,52 @@ sub BUILD {
6363
$self->comment( decode($encoding, join "\n", @lines) );
6464
}
6565

66+
=head1 METHODS
67+
68+
=head2 tree
69+
70+
Returns the L<< C<::Tree>|Git::PurePerl::Object::Tree >> associated with this commit.
71+
72+
=cut
6673

6774
sub tree {
6875
my $self = shift;
6976
return $self->git->get_object( $self->tree_sha1 );
7077
}
7178

72-
7379
sub _push_parent_sha1 {
7480
my ($self, $sha1) = @_;
7581

7682
push(@{$self->parent_sha1s}, $sha1);
7783
}
7884

85+
=head2 parent_sha1
86+
87+
Returns the C<sha1> for the first parent of this this commit.
88+
89+
=cut
90+
7991
sub parent_sha1 {
8092
return shift->parent_sha1s->[0];
8193
}
82-
94+
95+
=head2 parent
96+
97+
Returns the L<< C<::Commit>|Git::PurePerl::Object::Commit >> for this commits first parent.
98+
99+
=cut
100+
83101
sub parent {
84102
my $self = shift;
85103
return $self->git->get_object( $self->parent_sha1 );
86104
}
87105

106+
=head2 parents
107+
108+
Returns L<< C<::Commit>s|Git::PurePerl::Object::Commit >> for all this commits parents.
109+
110+
=cut
111+
88112
sub parents {
89113
my $self = shift;
90114

@@ -95,9 +119,9 @@ sub parents {
95119
96120
Traverses up the parentage of the object graph to find out if the given C<sha1> appears as an ancestor.
97121
98-
if ( $commit_object->has_ancestor_sha1( 'deadbeef' x 5 ) ) {
99-
...
100-
}
122+
if ( $commit_object->has_ancestor_sha1( 'deadbeef' x 5 ) ) {
123+
...
124+
}
101125
102126
=cut
103127

0 commit comments

Comments
 (0)