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

project_template_test_helper.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a02cd491bca880b1883866dc0301acd963ea2c3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module ProjectTemplateTestHelper
  def all_templates
    %w[
      rails spring express iosswift dotnetcore android
      gomicro gatsby hugo jekyll plainhtml
      hexo middleman gitpod_spring_petclinic nfhugo
      nfjekyll nfplainhtml nfgitbook nfhexo salesforcedx
      serverless_framework tencent_serverless_framework
      jsonnet cluster_management kotlin_native_linux
      pelican bridgetown typo3_distribution laravel
      astro_tailwind
    ]
  end
end

ProjectTemplateTestHelper.prepend_mod