aboutsummaryrefslogtreecommitdiff
path: root/docs/_plugins
diff options
context:
space:
mode:
authorTathagata Das <tathagata.das1565@gmail.com>2012-12-29 18:31:51 -0800
committerTathagata Das <tathagata.das1565@gmail.com>2012-12-29 18:31:51 -0800
commit9e644402c155b5fc68794a17c36ddd19d3242f4f (patch)
tree0fd01d0fb798d9cf2764f1ed666694fabdbb942a /docs/_plugins
parent0bc0a60d3001dd231e13057a838d4b6550e5a2b9 (diff)
downloadspark-9e644402c155b5fc68794a17c36ddd19d3242f4f.tar.gz
spark-9e644402c155b5fc68794a17c36ddd19d3242f4f.tar.bz2
spark-9e644402c155b5fc68794a17c36ddd19d3242f4f.zip
Improved jekyll and scala docs. Made many classes and method private to remove them from scala docs.
Diffstat (limited to 'docs/_plugins')
-rw-r--r--docs/_plugins/copy_api_dirs.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/_plugins/copy_api_dirs.rb b/docs/_plugins/copy_api_dirs.rb
index e61c105449..7654511eeb 100644
--- a/docs/_plugins/copy_api_dirs.rb
+++ b/docs/_plugins/copy_api_dirs.rb
@@ -2,7 +2,7 @@ require 'fileutils'
include FileUtils
if ENV['SKIP_SCALADOC'] != '1'
- projects = ["core", "examples", "repl", "bagel"]
+ projects = ["core", "examples", "repl", "bagel", "streaming"]
puts "Moving to project root and building scaladoc."
curr_dir = pwd
@@ -11,7 +11,7 @@ if ENV['SKIP_SCALADOC'] != '1'
puts "Running sbt/sbt doc from " + pwd + "; this may take a few minutes..."
puts `sbt/sbt doc`
- puts "moving back into docs dir."
+ puts "Moving back into docs dir."
cd("docs")
# Copy over the scaladoc from each project into the docs directory.