Skip to content

Commit 257e28a

Browse files
authored
Add bigdecimal gem, required to build Jekyll, but no longer in Ruby 3.4 default gems (#21546)
1 parent d01b49e commit 257e28a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/current/Gemfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ git_source(:github) { |name| "https://github.com/#{name}.git" }
22
# frozen_string_literal: true
33
source "https://rubygems.org"
44

5-
# If you modify this file, you'll need to build a new version of the
6-
# docs-builder Docker image to keep things speedy in CI. See ci/README.md for
7-
# instructions.
8-
9-
# Removed `gem "jekyll", "~> 4.3"`` until conflict with our use of ianjevins/jekyll-remote-include is resolved (DOC-13509)
5+
# If you add to this file, it is recommended to run `make vendor`
6+
# (`gem install bundler && bundle install`) before running your next local build.
7+
# It may fail without at least running `bundle install`.
108
gem "jekyll", "4.3.4"
119
gem "liquid-c", "~> 4.0.0"
1210
gem "redcarpet", "~> 3.6"
@@ -16,6 +14,7 @@ gem "jekyll-minifier"
1614
gem "csv"
1715
gem "logger"
1816
gem "base64"
17+
gem "bigdecimal"
1918

2019
group :jekyll_plugins do
2120
gem "jekyll-include-cache"

src/current/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ linkcheck: cockroachdb-build
8585
vale:
8686
vale $(subst $(\n), $( ), $(shell git status --porcelain | cut -c 4- | egrep "\.md"))
8787

88+
.PHONY: vendor
8889
vendor:
8990
gem install bundler
9091
bundle install

0 commit comments

Comments
 (0)