aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks/jekyll.rake
blob: 5f7a0616259c3995bc7b2f81be46dc4f48046c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
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