Commit bcb5eda2 by David Ormsbee

Merge pull request #1190 from MITx/fix/alex/opendocs_linux

Fix/alex/opendocs linux
parents 8532d79e cc76e051
...@@ -309,16 +309,22 @@ task :builddocs do ...@@ -309,16 +309,22 @@ task :builddocs do
end end
end end
desc "Show doc in browser (mac only for now) TODO add linux support" desc "Show docs in browser (mac and ubuntu)."
task :showdocs do task :showdocs do
Dir.chdir('docs/build/html') do Dir.chdir('docs/build/html') do
if RUBY_PLATFORM.include? 'darwin' # mac os
sh('open index.html') sh('open index.html')
elsif RUBY_PLATFORM.include? 'linux' # make more ubuntu specific?
sh('sensible-browser index.html') # ubuntu
else
raise "\nUndefined how to run browser on your machine.
Please use 'rake builddocs' and then manually open
'mitx/docs/build/html/index.html."
end
end end
end end
desc "Build docs and show them in browser" desc "Build docs and show them in browser"
task :doc => :builddocs do task :doc => :builddocs do
Dir.chdir('docs/build/html') do Rake::Task["showdocs"].invoke
sh('open index.html')
end
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment