Sha256: afd521c7914b0f9ef17c7652ea907baa4df75273f2962791ee0063c820271ac0
Contents?: true
Size: 1009 Bytes
Versions: 15
Compression:
Stored size: 1009 Bytes
Contents
module Shipit module DeploysHelper def render_checklist(checklist) return if checklist.blank? render 'shipit/deploys/checklist', checklist: checklist end def render_monitoring(stack) return unless stack.monitoring? render 'shipit/deploys/monitoring', stack: stack end def render_checks(commit) return unless commit.stack.checks? render 'shipit/commit_checks/checks', commit: commit end def render_monitoring_panel(panel_spec) if url = panel_spec['image'] image_tag(url, panel_spec.slice('height', 'width', 'alt')) elsif url = panel_spec['iframe'] content_tag(:iframe, '', panel_spec.slice('height', 'width').merge('src' => url)) else content_tag(:span, "#{panel_spec.inspect} is not a valid monitoring panel spec") end end def deploy_status_in_words(status) case status when 'timedout' "Timed out" else status.capitalize end end end end
Version data entries
15 entries across 15 versions & 1 rubygems