This is an automated email from the ASF dual-hosted git repository.
martijnvisser pushed a commit to branch release-1.7
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.7 by this push:
new 9c326a5ea29 [FLINK-11418][docs] Fix version of bundler to 1.16.1
9c326a5ea29 is described below
commit 9c326a5ea295f6d4d79fdb1d32f78a1a8de92d46
Author: Robert <[email protected]>
AuthorDate: Thu Jan 24 14:11:52 2019 +0100
[FLINK-11418][docs] Fix version of bundler to 1.16.1
This closes #7575
---
docs/README.md | 9 +++++----
docs/docker/Dockerfile | 2 +-
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/docs/README.md b/docs/README.md
index b9047991a75..79af68ea149 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -12,11 +12,11 @@ dependencies are installed locally when you build the
documentation through the
`build_docs.sh` script. If you want to install the software manually, use
Ruby's
Bundler Gem to install all dependencies:
- gem install bundler
+ gem install bundler -v 1.16.1
bundle install
-Note that in Ubuntu based systems, it may be necessary to install the
`ruby-dev`
-via apt to build native code.
+Note that in Ubuntu based systems, it may be necessary to install the following
+packages: `rubygems ruby-dev libssl-dev build-essential`.
# Using Dockerized Jekyll
@@ -29,7 +29,8 @@ cd flink/docs/docker
```
It takes a few moment to build the image for the first time, but will be a
second from the second time.
-The run.sh command brings you in a bash session where you can run following
doc commands.
+The run.sh command brings you in a bash session where you run the
`./build_docs.sh` script mentioned above.
+
# Build
diff --git a/docs/docker/Dockerfile b/docs/docker/Dockerfile
index b34235e2a36..77d3a58340b 100644
--- a/docs/docker/Dockerfile
+++ b/docs/docker/Dockerfile
@@ -27,5 +27,5 @@ RUN set -ex; \
gcc-c++ \
python-setuptools \
; \
- gem install bundler; \
+ gem install bundler -v 1.16.1; \
dnf clean all