Skip to content

Commit

Permalink
[FLINK-11418][docs] Fix version of bundler to 1.16.1
Browse files Browse the repository at this point in the history
This closes apache#7575
  • Loading branch information
rmetzger committed Feb 13, 2019
1 parent 3e7dfb9 commit 5e8e00b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ RUN set -ex; \
gcc-c++ \
python-setuptools \
; \
gem install bundler; \
gem install bundler -v 1.16.1; \
dnf clean all

0 comments on commit 5e8e00b

Please sign in to comment.