forked from elastic/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
19 lines (16 loc) · 746 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# IMPORTANT: If you change this file you should run `bundle lock` to
# regenerate Gemfile.lock or building the docker image will fail.
source "https://rubygems.org"
ruby "~> 2.5"
# We commit Gemfile.lock so we're not going to have "unexpected" version bumps
# of our gems. This file specifies what we think *should* work. Gemfile.lock
# specifies what we *know* does work.
gem "asciidoctor", "~> 2.0" # Used by the docs build
gem "digest-murmurhash", "~> 1.1.1" # Used by a custom asciidoctor plugin
gem "thread_safe", "~> 0.3.6" # Used by asciidoctor
gem "asciidoctor-diagram", "~> 1.5" # Speculative
gem "asciimath", "~> 1.0" # Speculative
group :test do
gem "rspec", "~> 3.8"
gem "rubocop", "~> 0.64.0"
end