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
path: root/lib/tasks
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2016-11-03 13:38:21 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-11-03 20:25:58 +0300
commit4ba789cd40dfca5de9569dc34db2c4b0252437fc (patch)
treef3c08391f5e9dc0826046b38baeed5831ce8fac6 /lib/tasks
parent651bdd7c34c9ebf686b8357d8fc3ca4d0a58792e (diff)
Remove unused `gitlab:generate_docs` Rake task
This was the only thing using the `sdoc` gem, which was blocking another gem from updating.
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/gitlab/generate_docs.rake7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/tasks/gitlab/generate_docs.rake b/lib/tasks/gitlab/generate_docs.rake
deleted file mode 100644
index f6448c38e10..00000000000
--- a/lib/tasks/gitlab/generate_docs.rake
+++ /dev/null
@@ -1,7 +0,0 @@
-namespace :gitlab do
- desc "GitLab | Generate sdocs for project"
- task generate_docs: :environment do
- system(*%W(bundle exec sdoc -o doc/code app lib))
- end
-end
-