Skip to content

Commit 2f9ed56

Browse files
committed
update Gemfile to use newer Bundler with Ruby 3.4 compat
1 parent 23e5599 commit 2f9ed56

4 files changed

Lines changed: 34 additions & 18 deletions

File tree

content/Gemfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,11 @@ end
2929
# Performance-booster for watching directories on Windows
3030
gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
3131

32-
3332
gem "webrick", "~> 1.8"
33+
34+
gem "base64"
35+
# for safe_yaml
36+
gem "bigdecimal"
37+
# for liquid
38+
gem "csv"
39+
# for jekyll

content/Gemfile.lock

Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,25 @@ GEM
33
specs:
44
addressable (2.9.0)
55
public_suffix (>= 2.0.2, < 8.0)
6+
base64 (0.3.0)
7+
bigdecimal (4.1.2)
68
colorator (1.1.0)
7-
concurrent-ruby (1.1.9)
9+
concurrent-ruby (1.3.6)
10+
csv (3.3.5)
811
em-websocket (0.5.3)
912
eventmachine (>= 0.12.9)
1013
http_parser.rb (~> 0)
1114
eventmachine (1.2.7)
12-
ffi (1.15.5)
15+
ffi (1.17.4-arm64-darwin)
16+
ffi (1.17.4-x64-mingw-ucrt)
17+
ffi (1.17.4-x86_64-linux-gnu)
1318
fileutils (1.6.0)
1419
forwardable-extended (2.6.0)
15-
http_parser.rb (0.8.0)
16-
i18n (1.8.11)
20+
http_parser.rb (0.8.1)
21+
i18n (1.14.8)
1722
concurrent-ruby (~> 1.0)
1823
io-wait (0.2.1)
19-
jekyll (4.2.1)
24+
jekyll (4.2.2)
2025
addressable (~> 2.4)
2126
colorator (~> 1.0)
2227
em-websocket (~> 0.5)
@@ -33,7 +38,7 @@ GEM
3338
terminal-table (~> 2.0)
3439
jekyll-redirect-from (0.16.0)
3540
jekyll (>= 3.3, < 5.0)
36-
jekyll-sass-converter (2.1.0)
41+
jekyll-sass-converter (2.2.0)
3742
sassc (> 2.0.1, < 3.0)
3843
jekyll-seo-tag (2.7.1)
3944
jekyll (>= 3.8, < 5.0)
@@ -43,14 +48,16 @@ GEM
4348
jekyll (>= 3.3, < 5.0)
4449
jekyll-watch (2.2.1)
4550
listen (~> 3.0)
46-
kramdown (2.3.1)
47-
rexml
51+
kramdown (2.5.2)
52+
rexml (>= 3.4.4)
4853
kramdown-parser-gfm (1.1.0)
4954
kramdown (~> 2.0)
50-
liquid (4.0.3)
51-
listen (3.7.1)
55+
liquid (4.0.4)
56+
listen (3.10.0)
57+
logger
5258
rb-fsevent (~> 0.10, >= 0.10.3)
5359
rb-inotify (~> 0.9, >= 0.9.10)
60+
logger (1.7.0)
5461
mercenary (0.4.0)
5562
net-http (0.2.0)
5663
net-protocol
@@ -61,12 +68,12 @@ GEM
6168
pathutil (0.16.2)
6269
forwardable-extended (~> 2.6)
6370
public_suffix (7.0.5)
64-
rb-fsevent (0.11.0)
65-
rb-inotify (0.10.1)
71+
rb-fsevent (0.11.2)
72+
rb-inotify (0.11.1)
6673
ffi (~> 1.0)
67-
rexml (3.4.2)
74+
rexml (3.4.4)
6875
rinku (2.0.6)
69-
rouge (3.27.0)
76+
rouge (3.30.0)
7077
safe_yaml (1.0.5)
7178
sassc (2.4.0)
7279
ffi (~> 1.9)
@@ -89,6 +96,9 @@ PLATFORMS
8996
x86_64-linux
9097

9198
DEPENDENCIES
99+
base64
100+
bigdecimal
101+
csv
92102
fileutils
93103
jekyll (~> 4.2.0)
94104
jekyll-redirect-from
@@ -103,4 +113,4 @@ DEPENDENCIES
103113
webrick (~> 1.8)
104114

105115
BUNDLED WITH
106-
2.2.22
116+
4.0.11

site/cwl-jekyll.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ hints:
2424
inplaceUpdate: true
2525
DockerRequirement:
2626
dockerFile: |
27-
FROM debian:bullseye
27+
FROM debian:13
2828
RUN apt-get update && apt-get install -yq bundler nodejs locales && gem install bundler
2929
RUN echo en_US.UTF-8 UTF-8 > /etc/locale.gen && locale-gen
3030
ENV LANG en_US.UTF-8

site/linkchecker.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ requirements:
1313
hints:
1414
DockerRequirement:
1515
dockerFile: |
16-
FROM debian:11
16+
FROM debian:13
1717
RUN apt-get update && \
1818
DEBIAN_FRONTEND=noninteractive apt-get -yq install --no-install-recommends linkchecker
1919
dockerImageId: commonworkflowlanguage/linkchecker

0 commit comments

Comments
 (0)