2014-09-02 18:07:02 +05:30
|
|
|
module GraphHelper
|
|
|
|
def get_refs(repo, commit)
|
|
|
|
refs = ""
|
2015-04-26 12:48:37 +05:30
|
|
|
refs << commit.ref_names(repo).join(' ')
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
# append note count
|
2015-04-26 12:48:37 +05:30
|
|
|
refs << "[#{@graph.notes[commit.id]}]" if @graph.notes[commit.id] > 0
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
refs
|
|
|
|
end
|
|
|
|
|
|
|
|
def parents_zip_spaces(parents, parent_spaces)
|
|
|
|
ids = parents.map { |p| p.id }
|
|
|
|
ids.zip(parent_spaces)
|
|
|
|
end
|
|
|
|
end
|