Skip to content

Commit ac8d21f

Browse files
authored
Merge pull request #5 from khnumdev/copilot/update-jekyll-dependencies
Modernize Jekyll site: update dependencies, add SEO, and comprehensive documentation
2 parents 21a9eda + cd76c5a commit ac8d21f

File tree

6 files changed

+340
-67
lines changed

6 files changed

+340
-67
lines changed

.gitignore

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
_site
2-
.sass-cache
3-
.jekyll-cache
1+
_site/
2+
.sass-cache/
3+
.jekyll-cache/
44
.jekyll-metadata
5-
vendor
5+
.bundle/
6+
vendor/
7+
*.gem
8+
.DS_Store

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.1.0

Gemfile

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,23 @@
11
source "https://rubygems.org"
2-
# Hello! This is where you manage which Jekyll version is used to run.
3-
# When you want to use a different version, change it below, save the
4-
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5-
#
6-
# bundle exec jekyll serve
7-
#
8-
# This will help ensure the proper Jekyll version is running.
9-
# Happy Jekylling!
10-
# gem "jekyll", "~> 4.2.0"
11-
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12-
gem "minima", "~> 2.5.1"
13-
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14-
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15-
gem "github-pages", "~> 231", group: :jekyll_plugins
16-
# If you have any plugins, put them here!
2+
3+
# Use GitHub Pages gem for compatibility
4+
gem "github-pages", "~> 232", group: :jekyll_plugins
5+
6+
# Theme
7+
gem "minima", "~> 2.5"
8+
9+
# Plugins
1710
group :jekyll_plugins do
1811
gem "jekyll-feed", "~> 0.12"
12+
gem "jekyll-seo-tag"
1913
end
2014

21-
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
22-
# and associated library.
15+
# Required for Ruby 3.0+
16+
gem "webrick", "~> 1.8"
17+
18+
# Windows and JRuby compatibility
2319
platforms :mingw, :x64_mingw, :mswin, :jruby do
24-
gem "tzinfo", "~> 1.2"
20+
gem "tzinfo", ">= 1", "< 3"
2521
gem "tzinfo-data"
2622
end
2723

Gemfile.lock

Lines changed: 57 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,60 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (7.1.5.1)
4+
activesupport (8.1.1)
55
base64
6-
benchmark (>= 0.3)
76
bigdecimal
8-
concurrent-ruby (~> 1.0, >= 1.0.2)
7+
concurrent-ruby (~> 1.0, >= 1.3.1)
98
connection_pool (>= 2.2.5)
109
drb
1110
i18n (>= 1.6, < 2)
11+
json
1212
logger (>= 1.4.2)
1313
minitest (>= 5.1)
14-
mutex_m
1514
securerandom (>= 0.3)
16-
tzinfo (~> 2.0)
17-
addressable (2.8.7)
18-
public_suffix (>= 2.0.2, < 7.0)
19-
base64 (0.2.0)
20-
benchmark (0.4.0)
21-
bigdecimal (3.1.9)
15+
tzinfo (~> 2.0, >= 2.0.5)
16+
uri (>= 0.13.1)
17+
addressable (2.8.8)
18+
public_suffix (>= 2.0.2, < 8.0)
19+
base64 (0.3.0)
20+
bigdecimal (4.0.1)
2221
coffee-script (2.4.1)
2322
coffee-script-source
2423
execjs
2524
coffee-script-source (1.12.2)
2625
colorator (1.1.0)
27-
commonmarker (0.23.11)
28-
concurrent-ruby (1.3.5)
29-
connection_pool (2.5.0)
30-
dnsruby (1.72.4)
31-
base64 (~> 0.2.0)
32-
logger (~> 1.6.5)
26+
commonmarker (0.23.12)
27+
concurrent-ruby (1.3.6)
28+
connection_pool (3.0.2)
29+
csv (3.3.5)
30+
dnsruby (1.73.1)
31+
base64 (>= 0.2)
32+
logger (~> 1.6)
3333
simpleidn (~> 0.2.1)
34-
drb (2.2.1)
34+
drb (2.2.3)
3535
em-websocket (0.5.3)
3636
eventmachine (>= 0.12.9)
3737
http_parser.rb (~> 0)
38-
ethon (0.16.0)
38+
ethon (0.18.0)
3939
ffi (>= 1.15.0)
40+
logger
4041
eventmachine (1.2.7)
4142
execjs (2.10.0)
42-
faraday (2.8.1)
43-
base64
44-
faraday-net_http (>= 2.0, < 3.1)
45-
ruby2_keywords (>= 0.0.4)
46-
faraday-net_http (3.0.2)
47-
ffi (1.17.1)
43+
faraday (2.14.0)
44+
faraday-net_http (>= 2.0, < 3.5)
45+
json
46+
logger
47+
faraday-net_http (3.4.2)
48+
net-http (~> 0.5)
49+
ffi (1.17.2-x86_64-linux-gnu)
4850
forwardable-extended (2.6.0)
4951
gemoji (4.1.0)
50-
github-pages (231)
52+
github-pages (232)
5153
github-pages-health-check (= 1.18.2)
52-
jekyll (= 3.9.5)
54+
jekyll (= 3.10.0)
5355
jekyll-avatar (= 0.8.0)
5456
jekyll-coffeescript (= 1.2.2)
55-
jekyll-commonmark-ghpages (= 0.4.0)
57+
jekyll-commonmark-ghpages (= 0.5.1)
5658
jekyll-default-layout (= 0.1.5)
5759
jekyll-feed (= 0.17.0)
5860
jekyll-gist (= 1.5.0)
@@ -89,9 +91,10 @@ GEM
8991
liquid (= 4.0.4)
9092
mercenary (~> 0.3)
9193
minima (= 2.5.1)
92-
nokogiri (>= 1.13.6, < 2.0)
94+
nokogiri (>= 1.16.2, < 2.0)
9395
rouge (= 3.30.0)
9496
terminal-table (~> 1.4)
97+
webrick (~> 1.8)
9598
github-pages-health-check (1.18.2)
9699
addressable (~> 2.3)
97100
dnsruby (~> 1.60)
@@ -101,12 +104,13 @@ GEM
101104
html-pipeline (2.14.3)
102105
activesupport (>= 2)
103106
nokogiri (>= 1.4)
104-
http_parser.rb (0.8.0)
105-
i18n (1.14.7)
107+
http_parser.rb (0.8.1)
108+
i18n (1.14.8)
106109
concurrent-ruby (~> 1.0)
107-
jekyll (3.9.5)
110+
jekyll (3.10.0)
108111
addressable (~> 2.4)
109112
colorator (~> 1.0)
113+
csv (~> 3.0)
110114
em-websocket (~> 0.5)
111115
i18n (>= 0.7, < 2)
112116
jekyll-sass-converter (~> 1.0)
@@ -117,16 +121,17 @@ GEM
117121
pathutil (~> 0.9)
118122
rouge (>= 1.7, < 4)
119123
safe_yaml (~> 1.0)
124+
webrick (>= 1.0)
120125
jekyll-avatar (0.8.0)
121126
jekyll (>= 3.0, < 5.0)
122127
jekyll-coffeescript (1.2.2)
123128
coffee-script (~> 2.2)
124129
coffee-script-source (~> 1.12)
125130
jekyll-commonmark (1.4.0)
126131
commonmarker (~> 0.22)
127-
jekyll-commonmark-ghpages (0.4.0)
128-
commonmarker (~> 0.23.7)
129-
jekyll (~> 3.9.0)
132+
jekyll-commonmark-ghpages (0.5.1)
133+
commonmarker (>= 0.23.7, < 1.1.0)
134+
jekyll (>= 3.9, < 4.0)
130135
jekyll-commonmark (~> 1.4.0)
131136
rouge (>= 2.0, < 5.0)
132137
jekyll-default-layout (0.1.5)
@@ -212,6 +217,7 @@ GEM
212217
gemoji (>= 3, < 5)
213218
html-pipeline (~> 2.2)
214219
jekyll (>= 3.0, < 5.0)
220+
json (2.18.0)
215221
kramdown (2.4.0)
216222
rexml
217223
kramdown-parser-gfm (1.1.0)
@@ -220,40 +226,42 @@ GEM
220226
listen (3.9.0)
221227
rb-fsevent (~> 0.10, >= 0.10.3)
222228
rb-inotify (~> 0.9, >= 0.9.10)
223-
logger (1.6.6)
229+
logger (1.7.0)
224230
mercenary (0.3.6)
225231
minima (2.5.1)
226232
jekyll (>= 3.5, < 5.0)
227233
jekyll-feed (~> 0.9)
228234
jekyll-seo-tag (~> 2.1)
229-
minitest (5.25.5)
230-
mutex_m (0.3.0)
231-
nokogiri (1.15.7-x86_64-linux)
235+
minitest (6.0.1)
236+
prism (~> 1.5)
237+
net-http (0.9.1)
238+
uri (>= 0.11.1)
239+
nokogiri (1.19.0-x86_64-linux-gnu)
232240
racc (~> 1.4)
233241
octokit (4.25.1)
234242
faraday (>= 1, < 3)
235243
sawyer (~> 0.9)
236244
pathutil (0.16.2)
237245
forwardable-extended (~> 2.6)
246+
prism (1.7.0)
238247
public_suffix (5.1.1)
239248
racc (1.8.1)
240249
rb-fsevent (0.11.2)
241250
rb-inotify (0.11.1)
242251
ffi (~> 1.0)
243-
rexml (3.4.1)
252+
rexml (3.4.4)
244253
rouge (3.30.0)
245-
ruby2_keywords (0.0.5)
246254
rubyzip (2.4.1)
247255
safe_yaml (1.0.5)
248256
sass (3.7.4)
249257
sass-listen (~> 4.0.0)
250258
sass-listen (4.0.0)
251259
rb-fsevent (~> 0.9, >= 0.9.4)
252260
rb-inotify (~> 0.9, >= 0.9.7)
253-
sawyer (0.9.2)
261+
sawyer (0.9.3)
254262
addressable (>= 2.3.5)
255263
faraday (>= 0.17.3, < 3)
256-
securerandom (0.3.2)
264+
securerandom (0.4.1)
257265
simpleidn (0.2.3)
258266
terminal-table (1.8.0)
259267
unicode-display_width (~> 1.1, >= 1.1.1)
@@ -262,17 +270,21 @@ GEM
262270
tzinfo (2.0.6)
263271
concurrent-ruby (~> 1.0)
264272
unicode-display_width (1.8.0)
273+
uri (1.1.1)
274+
webrick (1.9.2)
265275

266276
PLATFORMS
267277
x86_64-linux
268278

269279
DEPENDENCIES
270-
github-pages (~> 231)
280+
github-pages (~> 232)
271281
jekyll-feed (~> 0.12)
272-
minima (~> 2.5.1)
273-
tzinfo (~> 1.2)
282+
jekyll-seo-tag
283+
minima (~> 2.5)
284+
tzinfo (>= 1, < 3)
274285
tzinfo-data
275286
wdm (~> 0.1.1)
287+
webrick (~> 1.8)
276288

277289
BUNDLED WITH
278290
2.2.26

0 commit comments

Comments
 (0)