Sha256: 27b032ca2c2ffbe90a25a3442f65c3db932d0b0becbeeebacf795c81e5eeb9f5
Contents?: true
Size: 362 Bytes
Versions: 58
Compression:
Stored size: 362 Bytes
Contents
module Shipit class FirstParentCommitsIterator < OctokitIterator def each last_ancestor = nil super do |commit| unless last_ancestor yield last_ancestor = commit next end if last_ancestor.parents.first.sha == commit.sha yield last_ancestor = commit end end end end end
Version data entries
58 entries across 58 versions & 1 rubygems