A project is where you house your files (repository), plan your work (issues), and publish your documentation (wiki), #{link_to'among other things',help_page_path("user/project/index.md",anchor: "projects-features"),target: '_blank'}.
%p
All features are enabled when you create a project, but you can disable the ones you don’t need in the project settings.
%p
A project is where you house your files (repository), plan your work (issues), and publish your documentation (wiki), #{link_to'among other things',help_page_path("user/project/index.md",anchor: "projects-features"),target: '_blank'}.
%p
All features are enabled when you create a project, but you can disable the ones you don’t need in the project settings.
=link_toicon('question-circle'),help_page_path("gitlab-basics/create-project"),target: '_blank',aria: {label: "What’s included in a template?"},title: "What’s included in a template?",class: 'has-tooltip',data: {placement: 'top'}
ProjectTemplate.new('rails','Ruby on Rails','Includes a MVC structure, gemfile, rakefile, and .gitlab-ci.yml file, along with many others, to help you get started.','https://gitlab.com/gitlab-org/project-templates/rails'),
ProjectTemplate.new('spring','Spring','Includes a MVC structure, mvnw, pom.xml, and .gitlab-ci.yml file to help you get started.','https://gitlab.com/gitlab-org/project-templates/spring'),
ProjectTemplate.new('express','NodeJS Express','Includes a MVC structure, and .gitlab-ci.yml file to help you get started.','https://gitlab.com/gitlab-org/project-templates/express')
@@ -4,9 +4,9 @@ describe Gitlab::ProjectTemplate do
describe'.all'do
it'returns a all templates'do
expected=[
described_class.new('rails','Ruby on Rails'),
described_class.new('spring','Spring'),
described_class.new('express','NodeJS Express')
described_class.new('rails','Ruby on Rails','Includes an MVC structure, .gitignore, Gemfile, and more great stuff','https://gitlab.com/gitlab-org/project-templates/rails'),
described_class.new('spring','Spring','Includes an MVC structure, .gitignore, Gemfile, and more great stuff','https://gitlab.com/gitlab-org/project-templates/spring'),
described_class.new('express','NodeJS Express','Includes an MVC structure, .gitignore, Gemfile, and more great stuff','https://gitlab.com/gitlab-org/project-templates/express')
]
expect(described_class.all).tobe_an(Array)
...
...
@@ -31,7 +31,7 @@ describe Gitlab::ProjectTemplate do