Skip to content

Commit 83ef376

Browse files
committed
Fix jekyll version causing issues with Netlify's ruby version
1 parent 2181085 commit 83ef376

2 files changed

Lines changed: 16 additions & 19 deletions

File tree

site/Gemfile

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
source 'https://rubygems.org'
22

3-
# Use Jekyll 3.9.x (same major/minor version GitHub Pages uses,
4-
# but without disabling custom plugins)
5-
gem "jekyll", "~> 3.9.2"
3+
# Jekyll 3.9.3+ shims tainted?/untaint for Ruby 3.2+ compatibility
4+
gem "jekyll", "~> 3.9.5"
65

76
# For local testing of links, images, etc.
87
gem 'html-proofer'
@@ -17,14 +16,10 @@ gem 'base64'
1716
gem 'bigdecimal'
1817

1918
group :jekyll_plugins do
20-
# DataPage Generator to create pages from .yml data
2119
gem "jekyll-datapage-generator"
22-
23-
# Additional Jekyll plugins you were using:
2420
gem 'jekyll-seo-tag'
2521
gem 'jekyll-maps'
2622
gem 'jekyll-sitemap'
2723
gem 'jekyll-feed'
28-
2924
gem 'kramdown-parser-gfm'
30-
end
25+
end

site/Gemfile.lock

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ GEM
66
base64 (0.3.0)
77
bigdecimal (4.0.1)
88
colorator (1.1.0)
9-
concurrent-ruby (1.1.10)
9+
concurrent-ruby (1.3.6)
1010
csv (3.3.5)
1111
em-websocket (0.5.3)
1212
eventmachine (>= 0.12.9)
@@ -24,14 +24,14 @@ GEM
2424
rainbow (~> 3.0)
2525
typhoeus (~> 1.3)
2626
yell (~> 2.0)
27-
http_parser.rb (0.8.0)
28-
i18n (0.9.5)
27+
http_parser.rb (0.8.1)
28+
i18n (1.14.8)
2929
concurrent-ruby (~> 1.0)
30-
jekyll (3.9.2)
30+
jekyll (3.9.5)
3131
addressable (~> 2.4)
3232
colorator (~> 1.0)
3333
em-websocket (~> 0.5)
34-
i18n (~> 0.7)
34+
i18n (>= 0.7, < 2)
3535
jekyll-sass-converter (~> 1.0)
3636
jekyll-watch (~> 2.0)
3737
kramdown (>= 1.17, < 3)
@@ -57,10 +57,12 @@ GEM
5757
rexml
5858
kramdown-parser-gfm (1.1.0)
5959
kramdown (~> 2.0)
60-
liquid (4.0.3)
61-
listen (3.7.1)
60+
liquid (4.0.4)
61+
listen (3.10.0)
62+
logger
6263
rb-fsevent (~> 0.10, >= 0.10.3)
6364
rb-inotify (~> 0.9, >= 0.9.10)
65+
logger (1.7.0)
6466
mercenary (0.3.6)
6567
mini_portile2 (2.8.0)
6668
nokogiri (1.13.5)
@@ -72,11 +74,11 @@ GEM
7274
public_suffix (4.0.7)
7375
racc (1.6.0)
7476
rainbow (3.1.1)
75-
rb-fsevent (0.11.1)
76-
rb-inotify (0.10.1)
77+
rb-fsevent (0.11.2)
78+
rb-inotify (0.11.1)
7779
ffi (~> 1.0)
7880
rexml (3.2.5)
79-
rouge (3.26.0)
81+
rouge (3.30.0)
8082
safe_yaml (1.0.5)
8183
sass (3.7.4)
8284
sass-listen (~> 4.0.0)
@@ -96,7 +98,7 @@ DEPENDENCIES
9698
bigdecimal
9799
csv
98100
html-proofer
99-
jekyll (~> 3.9.2)
101+
jekyll (~> 3.9.5)
100102
jekyll-datapage-generator
101103
jekyll-feed
102104
jekyll-maps

0 commit comments

Comments
 (0)