File tree 2 files changed +27
-1
lines changed
2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for Perl module Git::PurePerl:
2
2
3
+ - Add basic documentation for Object::Commit (Kent Fredric)
3
4
- Add has_ancestor_sha1 method to Object::Commit (Kent Fredric)
4
5
- Add Git::PurePerl::Util with handy current_git_dir() util (Kent Fredric)
5
6
Original file line number Diff line number Diff line change @@ -63,6 +63,13 @@ sub BUILD {
63
63
$self -> comment( decode($encoding , join " \n " , @lines ) );
64
64
}
65
65
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
66
73
67
74
sub tree {
68
75
my $self = shift ;
@@ -76,15 +83,33 @@ sub _push_parent_sha1 {
76
83
push (@{$self -> parent_sha1s}, $sha1 );
77
84
}
78
85
86
+ =head2 parent_sha1
87
+
88
+ Returns the C<sha1 > for the first parent of this this commit.
89
+
90
+ =cut
91
+
79
92
sub parent_sha1 {
80
93
return shift -> parent_sha1s-> [0];
81
94
}
82
-
95
+
96
+ =head2 parent
97
+
98
+ Returns the L<< C<::Commit> |Git::PurePerl::Object::Commit >> for this commits first parent.
99
+
100
+ =cut
101
+
83
102
sub parent {
84
103
my $self = shift ;
85
104
return $self -> git-> get_object( $self -> parent_sha1 );
86
105
}
87
106
107
+ =head2 parents
108
+
109
+ Returns L<< C<::Commit> s|Git::PurePerl::Object::Commit >> for all this commits parents.
110
+
111
+ =cut
112
+
88
113
sub parents {
89
114
my $self = shift ;
90
115
You can’t perform that action at this time.
0 commit comments