summaryrefslogtreecommitdiff
path: root/lib/gitlab/badge/build/template.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/badge/build/template.rb')
-rw-r--r--lib/gitlab/badge/build/template.rb47
1 files changed, 0 insertions, 47 deletions
diff --git a/lib/gitlab/badge/build/template.rb b/lib/gitlab/badge/build/template.rb
deleted file mode 100644
index bc0e0cd441d..00000000000
--- a/lib/gitlab/badge/build/template.rb
+++ /dev/null
@@ -1,47 +0,0 @@
-module Gitlab
- module Badge
- module Build
- ##
- # Class that represents a build badge template.
- #
- # Template object will be passed to badge.svg.erb template.
- #
- class Template < Badge::Template
- STATUS_COLOR = {
- success: '#4c1',
- failed: '#e05d44',
- running: '#dfb317',
- pending: '#dfb317',
- canceled: '#9f9f9f',
- skipped: '#9f9f9f',
- unknown: '#9f9f9f'
- }.freeze
-
- def initialize(badge)
- @entity = badge.entity
- @status = badge.status
- end
-
- def key_text
- @entity.to_s
- end
-
- def value_text
- @status.to_s
- end
-
- def key_width
- 38
- end
-
- def value_width
- 54
- end
-
- def value_color
- STATUS_COLOR[@status.to_sym] || STATUS_COLOR[:unknown]
- end
- end
- end
- end
-end