Skip to content

Commit 578aac1

Browse files
committed
Upgrade rubygem versions.
1 parent 89e8dba commit 578aac1

File tree

4 files changed

+61
-41
lines changed

4 files changed

+61
-41
lines changed

docs/_spec/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
FROM ruby:2.7
1+
FROM ruby:3.3
22

33
RUN apt-get install -y curl \
44
&& curl -sL https://deb.nodesource.com/setup_18.x | bash - \
55
&& apt-get install -y nodejs \
66
&& curl -L https://www.npmjs.com/install.sh | sh
77

8-
RUN gem update --system
9-
RUN gem install sass-embedded -v 1.58.0
10-
RUN gem install bundler:1.17.2 jekyll
8+
RUN gem update --system 3.5.6
9+
RUN gem install bundler:2.5.6
1110

1211
WORKDIR /srv/jekyll
1312

docs/_spec/Gemfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# To build the spec on Travis CI
21
source "https://rubygems.org"
2+
ruby "3.3"
33

4-
gem "jekyll", "3.6.3"
5-
gem "webrick"
4+
gem "jekyll", "4.3.3"
65
gem "rouge"
7-
# gem 's3_website'
8-
gem "redcarpet", "3.5.1"
6+
gem "rexml"
7+
gem "sass-embedded"
8+
gem "csv"

docs/_spec/Gemfile.lock

Lines changed: 50 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,78 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.8.1)
4+
addressable (2.8.6)
55
public_suffix (>= 2.0.2, < 6.0)
66
colorator (1.1.0)
7-
ffi (1.15.5)
7+
concurrent-ruby (1.2.3)
8+
csv (3.2.8)
9+
em-websocket (0.5.3)
10+
eventmachine (>= 0.12.9)
11+
http_parser.rb (~> 0)
12+
eventmachine (1.2.7)
13+
ffi (1.16.3)
814
forwardable-extended (2.6.0)
9-
jekyll (3.6.3)
15+
google-protobuf (3.25.3-x86_64-linux)
16+
http_parser.rb (0.8.0)
17+
i18n (1.14.1)
18+
concurrent-ruby (~> 1.0)
19+
jekyll (4.3.3)
1020
addressable (~> 2.4)
1121
colorator (~> 1.0)
12-
jekyll-sass-converter (~> 1.0)
13-
jekyll-watch (~> 1.1)
14-
kramdown (~> 1.14)
22+
em-websocket (~> 0.5)
23+
i18n (~> 1.0)
24+
jekyll-sass-converter (>= 2.0, < 4.0)
25+
jekyll-watch (~> 2.0)
26+
kramdown (~> 2.3, >= 2.3.1)
27+
kramdown-parser-gfm (~> 1.0)
1528
liquid (~> 4.0)
16-
mercenary (~> 0.3.3)
29+
mercenary (>= 0.3.6, < 0.5)
1730
pathutil (~> 0.9)
18-
rouge (>= 1.7, < 3)
31+
rouge (>= 3.0, < 5.0)
1932
safe_yaml (~> 1.0)
20-
jekyll-sass-converter (1.5.2)
21-
sass (~> 3.4)
22-
jekyll-watch (1.5.1)
33+
terminal-table (>= 1.8, < 4.0)
34+
webrick (~> 1.7)
35+
jekyll-sass-converter (3.0.0)
36+
sass-embedded (~> 1.54)
37+
jekyll-watch (2.2.1)
2338
listen (~> 3.0)
24-
kramdown (1.17.0)
25-
liquid (4.0.3)
26-
listen (3.7.1)
39+
kramdown (2.4.0)
40+
rexml
41+
kramdown-parser-gfm (1.1.0)
42+
kramdown (~> 2.0)
43+
liquid (4.0.4)
44+
listen (3.8.0)
2745
rb-fsevent (~> 0.10, >= 0.10.3)
2846
rb-inotify (~> 0.9, >= 0.9.10)
29-
mercenary (0.3.6)
47+
mercenary (0.4.0)
3048
pathutil (0.16.2)
3149
forwardable-extended (~> 2.6)
32-
public_suffix (5.0.0)
50+
public_suffix (5.0.4)
3351
rb-fsevent (0.11.2)
3452
rb-inotify (0.10.1)
3553
ffi (~> 1.0)
36-
redcarpet (3.5.1)
37-
rouge (2.2.1)
54+
rexml (3.2.6)
55+
rouge (4.2.0)
3856
safe_yaml (1.0.5)
39-
sass (3.7.4)
40-
sass-listen (~> 4.0.0)
41-
sass-listen (4.0.0)
42-
rb-fsevent (~> 0.9, >= 0.9.4)
43-
rb-inotify (~> 0.9, >= 0.9.7)
44-
webrick (1.7.0)
57+
sass-embedded (1.71.0-x86_64-linux-gnu)
58+
google-protobuf (~> 3.25)
59+
terminal-table (3.0.2)
60+
unicode-display_width (>= 1.1.1, < 3)
61+
unicode-display_width (2.5.0)
62+
webrick (1.8.1)
4563

4664
PLATFORMS
47-
ruby
4865
x86_64-linux
4966

5067
DEPENDENCIES
51-
jekyll (= 3.6.3)
52-
redcarpet (= 3.5.1)
68+
csv
69+
jekyll (= 4.3.3)
70+
rexml
5371
rouge
54-
webrick
72+
sass-embedded
73+
74+
RUBY VERSION
75+
ruby 3.3.0p0
5576

5677
BUNDLED WITH
57-
2.3.5
78+
2.5.6

docs/_spec/_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ versionCompareMessage: "an upcoming"
55
safe: true
66
lsi: false
77
highlighter: false
8-
markdown: redcarpet
8+
markdown: kramdown
99
encoding: utf-8
10-
redcarpet:
11-
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data", "strikethrough", "lax_spacing", "space_after_headers", "superscript", "footnotes", "disable_indented_code_blocks"]
10+
kramdown:
11+
input: GFM

0 commit comments

Comments
 (0)