Sha256: c1e1304a550b8b50c29768420e81a69c4e470448225faf1fb4452828fe961e2e
Contents?: true
Size: 619 Bytes
Versions: 57
Compression:
Stored size: 619 Bytes
Contents
module Redcar module Scm class ScmCommitsMirror include Redcar::Tree::Mirror def initialize(repo) @repo = repo end def title @repo.translations[:unpushed_commits] end def data_type :text end def changed? @repo.push_targets.count > 0 end def drag_and_drop? false end def top if @repo.push_targets.count > 0 @repo.push_targets else @top ||= [ScmCommitsMirror::CommitsNode.new(@repo)] end end end end end
Version data entries
57 entries across 57 versions & 2 rubygems