aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Florisson2014-02-27 16:13:59 +0100
committerMarc Florisson2014-02-27 16:13:59 +0100
commitabb6bd4905278433d3974ce7edbbb894a9624d6b (patch)
tree6aa88d43ac41129d804681aa947949973d1f42d1
parent26cf7a3d70273006abf7b3757d0283aa2f6c87ea (diff)
downloadchouette-core-abb6bd4905278433d3974ce7edbbb894a9624d6b.tar.bz2
remove useless jekyll tasks
-rw-r--r--lib/tasks/jekyll.rake11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/tasks/jekyll.rake b/lib/tasks/jekyll.rake
deleted file mode 100644
index 5f7a06162..000000000
--- a/lib/tasks/jekyll.rake
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace :jekyll do
- desc "Generate help from doc/functional sources (use AUTO option to auto-regenerate)"
- task :dist do
- options = "--auto" if ENV['AUTO']
- sh "jekyll #{options} doc/functional public/help"
- end
- desc "Clean generated help"
- task :clean do
- rm_rf "public/help"
- end
-end