summaryrefslogtreecommitdiff
path: root/lib/gitlab/template/gitlab_ci_yml.rb
blob: 7f480fe33c0f51aeb653313517c2829035f542bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module Gitlab
  module Template
    class GitlabCiYml < BaseTemplate
      def content
        explanation = "# This file is a template, and might need editing before it works on your project."
        [explanation, super].join("\n")
      end

      class << self
        def extension
          '.gitlab-ci.yml'
        end

        def categories
          {
            "General" => '',
            "Pages" => 'Pages'
          }
        end

        def base_dir
          Rails.root.join('vendor/gitlab-ci-yml')
        end
      end
    end
  end
end