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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-06 18:10:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-06 18:10:17 +0300
commit0a5ea888dca19dec6ce473a88c35a4ef95f61a9c (patch)
tree6507f8bd191ebe9f1e73e0d76c36b226f18c595f /lib/gitlab/template
parent25db9c1230f7b54a7337b3d2dfe714478a7d54f0 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/template')
-rw-r--r--lib/gitlab/template/gitlab_ci_syntax_yml_template.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/gitlab/template/gitlab_ci_syntax_yml_template.rb b/lib/gitlab/template/gitlab_ci_syntax_yml_template.rb
deleted file mode 100644
index 3bf3a28d3c5..00000000000
--- a/lib/gitlab/template/gitlab_ci_syntax_yml_template.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Template
- class GitlabCiSyntaxYmlTemplate < BaseTemplate
- class << self
- def extension
- '.gitlab-ci.yml'
- end
-
- def categories
- {
- 'General' => ''
- }
- end
-
- def base_dir
- Rails.root.join('lib/gitlab/ci/syntax_templates')
- end
-
- def finder(project = nil)
- Gitlab::Template::Finders::GlobalTemplateFinder.new(
- self.base_dir, self.extension, self.categories
- )
- end
- end
- end
- end
-end