Update rake docs to reflect change in folder structure

This commit is contained in:
Julian Arni
2013-07-16 13:45:22 -04:00
parent 5f9c395afe
commit 2540be2442
2 changed files with 29 additions and 0 deletions

7
docs/Makefile Normal file
View File

@@ -0,0 +1,7 @@
.PHONY: html
html:
@cd $(CURDIR)/data && make html
@cd $(CURDIR)/course_authors && make html
@cd $(CURDIR)/developers && make html

View File

@@ -3,6 +3,19 @@ require 'launchy'
# --- Develop and public documentation ---
desc "Invoke sphinx 'make build' to generate docs."
task :builddocs, [:options] do |t, args|
if args.options == 'dev'
path = "docs/developer"
elsif args.options == 'author'
path = "docs/course_authors"
elsif args.options == 'data'
path = "docs/data"
else
path = "docs"
end
Dir.chdir(path) do
sh('make html')
end
path = "docs"
Dir.chdir(path) do
@@ -13,6 +26,15 @@ end
desc "Show docs in browser (mac and ubuntu)."
task :showdocs, [:options] do |t, args|
path = "docs"
if args.options == 'dev'
path = "docs/developer"
elsif args.options == 'author'
path = "docs/course_authors"
elsif args.options == 'data'
path = "docs/data"
else
path = "docs"
end
Launchy.open("#{path}/build/html/index.html")
end