Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/presenters/dev_ops_report/metric_presenter.rb')
-rw-r--r--app/presenters/dev_ops_report/metric_presenter.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/app/presenters/dev_ops_report/metric_presenter.rb b/app/presenters/dev_ops_report/metric_presenter.rb
index 1a5b12fa408..75dbbb63f76 100644
--- a/app/presenters/dev_ops_report/metric_presenter.rb
+++ b/app/presenters/dev_ops_report/metric_presenter.rb
@@ -93,52 +93,52 @@ module DevOpsReport
IdeaToProductionStep.new(
metric: metric,
title: 'Idea',
- features: %w(issues)
+ features: %w[issues]
),
IdeaToProductionStep.new(
metric: metric,
title: 'Issue',
- features: %w(issues notes)
+ features: %w[issues notes]
),
IdeaToProductionStep.new(
metric: metric,
title: 'Plan',
- features: %w(milestones boards)
+ features: %w[milestones boards]
),
IdeaToProductionStep.new(
metric: metric,
title: 'Code',
- features: %w(merge_requests)
+ features: %w[merge_requests]
),
IdeaToProductionStep.new(
metric: metric,
title: 'Commit',
- features: %w(merge_requests)
+ features: %w[merge_requests]
),
IdeaToProductionStep.new(
metric: metric,
title: 'Test',
- features: %w(ci_pipelines)
+ features: %w[ci_pipelines]
),
IdeaToProductionStep.new(
metric: metric,
title: 'Review',
- features: %w(ci_pipelines environments)
+ features: %w[ci_pipelines environments]
),
IdeaToProductionStep.new(
metric: metric,
title: 'Staging',
- features: %w(environments deployments)
+ features: %w[environments deployments]
),
IdeaToProductionStep.new(
metric: metric,
title: 'Production',
- features: %w(deployments)
+ features: %w[deployments]
),
IdeaToProductionStep.new(
metric: metric,
title: 'Feedback',
- features: %w(projects_prometheus_active service_desk_issues)
+ features: %w[projects_prometheus_active service_desk_issues]
)
]
end