Skip to content

Commit e160bc3

Browse files
committed
build: ruby 3, jekill 4,
1 parent 6070fc8 commit e160bc3

4 files changed

Lines changed: 168 additions & 138 deletions

File tree

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.4
1+
3.4.3

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby 2.7.4
1+
ruby 3.4.3

Gemfile

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
source "https://rubygems.org"
2-
32
# Hello! This is where you manage which Jekyll version is used to run.
43
# When you want to use a different version, change it below, save the
54
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
@@ -8,26 +7,27 @@ source "https://rubygems.org"
87
#
98
# This will help ensure the proper Jekyll version is running.
109
# Happy Jekylling!
11-
# gem "jekyll", "~> 3.9.0"
12-
10+
# gem "jekyll", "~> 4.4.1"
1311
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14-
gem "minima", "~> 2.5.1"
15-
12+
gem "minima", "~> 2.5"
1613
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
1714
# uncomment the line below. To upgrade, run `bundle update github-pages`.
18-
gem "github-pages", "~> 221", group: :jekyll_plugins
19-
15+
gem "github-pages", group: :jekyll_plugins
2016
# If you have any plugins, put them here!
21-
# group :jekyll_plugins do
22-
# gem "jekyll-feed", "~> 0.6"
23-
# end
17+
group :jekyll_plugins do
18+
gem "jekyll-feed", "~> 0.12"
19+
end
2420

25-
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
26-
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
21+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
22+
# and associated library.
23+
platforms :mingw, :x64_mingw, :mswin, :jruby do
24+
gem "tzinfo", ">= 1", "< 3"
25+
gem "tzinfo-data"
26+
end
2727

2828
# Performance-booster for watching directories on Windows
29-
gem "wdm", "~> 0.1.0" if Gem.win_platform?
29+
gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]
3030

31-
# Required to get the dark theme working
32-
# See: https://github.com/jekyll/minima/issues/599
33-
gem "jekyll-remote-theme", group: :jekyll_plugins
31+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
32+
# do not have a Java counterpart.
33+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

0 commit comments

Comments
 (0)