36 lines
601 B
Ruby
36 lines
601 B
Ruby
|
module Network
|
||
|
class Commit
|
||
|
include ActionView::Helpers::TagHelper
|
||
|
|
||
|
attr_accessor :time, :spaces, :parent_spaces
|
||
|
|
||
|
def initialize(raw_commit)
|
||
|
@commit = raw_commit
|
||
|
@time = -1
|
||
|
@spaces = []
|
||
|
@parent_spaces = []
|
||
|
end
|
||
|
|
||
|
def method_missing(m, *args, &block)
|
||
|
@commit.send(m, *args, &block)
|
||
|
end
|
||
|
|
||
|
def space
|
||
|
if @spaces.size > 0
|
||
|
@spaces.first
|
||
|
else
|
||
|
0
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def parents(map)
|
||
|
@commit.parents.map do |p|
|
||
|
if map.include?(p.id)
|
||
|
map[p.id]
|
||
|
end
|
||
|
end
|
||
|
.compact
|
||
|
end
|
||
|
end
|
||
|
end
|