mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
17 lines
483 B
Ruby
17 lines
483 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ProjectTemplateTestHelper
|
|
def all_templates
|
|
%w[
|
|
rails spring express iosswift dotnetcore android
|
|
gomicro astro docusaurus hugo jekyll nextjs nuxt plainhtml
|
|
gitpod_spring_petclinic salesforcedx
|
|
serverless_framework tencent_serverless_framework
|
|
jsonnet cluster_management kotlin_native_linux
|
|
typo3_distribution laravel nist_80053r5 gitlab_components
|
|
]
|
|
end
|
|
end
|
|
|
|
ProjectTemplateTestHelper.prepend_mod
|