blob: 71a07d6cad1b0c2e1e8550f23be5458ca3d246bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module GraphHelper
def get_refs(commit)
refs = ""
refs += commit.refs.collect{|r|r.name}.join(" ") if commit.refs
# append note count
refs += "[#{@graph.notes[commit.id]}]" if @graph.notes[commit.id] > 0
refs
end
def parents_zip_spaces(parents, parent_spaces)
ids = parents.map { |p| p.id }
ids.zip(parent_spaces)
end
end
|