Skip to content

Commit 07479df

Browse files
authored
Lock psych to v4.x
Refer Ruby comment for details.
1 parent d54e910 commit 07479df

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,12 @@ gemspec
55

66
gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
77
gem "kramdown-parser-gfm" if ENV["JEKYLL_VERSION"] == "~> 3.9"
8+
9+
# Psych 5 has stopped bundling `libyaml` and expects it to be installed on the host system prior to
10+
# being invoked.
11+
# Since we don't have a direct dependency on the Psych gem (it gets included in the gem bundle as a
12+
# dependency of the `rdoc` gem), lock psych gem to v4.x instead of installing `libyaml` in our
13+
# development / CI environment.
14+
gem "psych", "~> 4.0"
15+
816
gem "test-unit"

0 commit comments

Comments
 (0)