2013-03-06 06:31:28 -05:00
|
|
|
module GraphHelper
|
2013-08-19 23:05:23 -04:00
|
|
|
def get_refs(repo, commit)
|
2013-03-25 20:51:39 -04:00
|
|
|
refs = ""
|
2013-08-19 23:05:23 -04:00
|
|
|
refs += commit.ref_names(repo).join(" ")
|
2013-03-25 20:51:39 -04:00
|
|
|
|
|
|
|
# append note count
|
2013-04-24 11:06:31 -04:00
|
|
|
refs += "[#{@graph.notes[commit.id]}]" if @graph.notes[commit.id] > 0
|
2013-03-25 20:51:39 -04:00
|
|
|
|
|
|
|
refs
|
2013-03-06 06:31:28 -05:00
|
|
|
end
|
2013-03-06 07:01:40 -05:00
|
|
|
|
|
|
|
def parents_zip_spaces(parents, parent_spaces)
|
|
|
|
ids = parents.map { |p| p.id }
|
|
|
|
ids.zip(parent_spaces)
|
|
|
|
end
|
2013-03-06 06:31:28 -05:00
|
|
|
end
|