Sha256: bbf0fcce4914533441b6895cb0cb5a680f7022f16000a25198c74ae4e2dc6230
Contents?: true
Size: 686 Bytes
Versions: 176
Compression:
Stored size: 686 Bytes
Contents
%h2 #{ workflow.to_s } jobs - tsv = TSV.setup({}, :key_field => "Name", :fields => ["Task", "Status", "Pid", "Start"], :type => :list, :unnamed => true) - job_info.each do |file, info| - next if info[:done] - status, pid, name, start = Step.step_info(file).values_at :status, :pid, :name, :start_time - status = html_tag("span", status, :class => status.to_s.split(">").last) - task = info[:task] - link = html_tag("a", name, :href => "/" << [workflow, task, name] * "/") - if Misc.pid_exists? pid - pid = html_tag("span", pid, :class => 'alive') - else - pid = html_tag("span", pid, :class => 'dead') - tsv[link] = [task, status, pid, start] = tsv2html tsv
Version data entries
176 entries across 176 versions & 1 rubygems