Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

fix docsite build issue #2083

Merged
merged 2 commits into from
May 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ generate() {
-v $DOCSITE:/srv/jekyll \
-v $REPO_ROOT/docs:/srv/docs \
-v $DOCSITE/.bundler:/usr/local/bundle \
jekyll/jekyll jekyll build
jekyll/jekyll /bin/bash -c "bundle install; jekyll build"
}

"$@"
2 changes: 2 additions & 0 deletions docsite/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,5 @@ end
gem "kramdown", "~> 1.11"
gem "rouge", "~> 2.0"
gem "pry"

gem "public_suffix", "~> 3.0"
3 changes: 2 additions & 1 deletion docsite/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,10 @@ DEPENDENCIES
kramdown (~> 1.11)
minima (~> 2.0)
pry
public_suffix (~> 3.0)
rouge (~> 2.0)
terminal-table (~> 1.4)
unicode-display_width (~> 1.1)

BUNDLED WITH
1.16.1
1.16.2
2 changes: 2 additions & 0 deletions docsite/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ exclude:
- proposals
- v1

exclude: [vendor]

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is the only thing I don't have any feeling for what it does.

plugins:
- jekyll-feed
- jekyll-sitemap
Expand Down