Skip to content

Commit 1ad8639

Browse files
committed
fix: update Gemfiles
I understand that the README says to not commit Gemfile file but having to manually boundle update everytime will be very annoying. This way the docker container should work oob.
1 parent e235590 commit 1ad8639

File tree

3 files changed

+25
-30
lines changed

3 files changed

+25
-30
lines changed

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ end
1010

1111
gem 'tzinfo', '>= 2.0' if Gem.win_platform?
1212
gem 'tzinfo-data', '>= 1.2020' if Gem.win_platform?
13-
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
13+
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
14+
gem "webrick", "~> 1.9"

Gemfile.lock

Lines changed: 22 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.8.0)
5-
public_suffix (>= 2.0.2, < 5.0)
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
66
colorator (1.1.0)
7-
concurrent-ruby (1.1.6)
8-
em-websocket (0.5.1)
7+
concurrent-ruby (1.3.5)
8+
em-websocket (0.5.3)
99
eventmachine (>= 0.12.9)
10-
http_parser.rb (~> 0.6.0)
10+
http_parser.rb (~> 0)
1111
eventmachine (1.2.7)
1212
eventmachine (1.2.7-x64-mingw32)
13-
ffi (1.13.1)
14-
ffi (1.13.1-x64-mingw32)
13+
ffi (1.15.5)
14+
ffi (1.15.5-x64-mingw32)
1515
forwardable-extended (2.6.0)
16-
http_parser.rb (0.6.0)
17-
i18n (1.8.3)
16+
http_parser.rb (0.8.0)
17+
i18n (1.14.7)
1818
concurrent-ruby (~> 1.0)
1919
jekyll (4.1.1)
2020
addressable (~> 2.4)
@@ -31,44 +31,40 @@ GEM
3131
rouge (~> 3.0)
3232
safe_yaml (~> 1.0)
3333
terminal-table (~> 1.8)
34-
jekyll-sass-converter (2.1.0)
34+
jekyll-sass-converter (2.2.0)
3535
sassc (> 2.0.1, < 3.0)
3636
jekyll-seo-tag (2.6.1)
3737
jekyll (>= 3.3, < 5.0)
3838
jekyll-sitemap (1.3.1)
3939
jekyll (>= 3.7, < 5.0)
4040
jekyll-watch (2.2.1)
4141
listen (~> 3.0)
42-
kramdown (2.3.1)
43-
rexml
42+
kramdown (2.5.1)
43+
rexml (>= 3.3.9)
4444
kramdown-parser-gfm (1.1.0)
4545
kramdown (~> 2.0)
46-
liquid (4.0.3)
47-
listen (3.2.1)
46+
liquid (4.0.4)
47+
listen (3.9.0)
4848
rb-fsevent (~> 0.10, >= 0.10.3)
4949
rb-inotify (~> 0.9, >= 0.9.10)
5050
mercenary (0.4.0)
5151
pathutil (0.16.2)
5252
forwardable-extended (~> 2.6)
53-
public_suffix (4.0.6)
54-
rb-fsevent (0.10.4)
55-
rb-inotify (0.10.1)
53+
public_suffix (6.0.1)
54+
rb-fsevent (0.11.2)
55+
rb-inotify (0.11.1)
5656
ffi (~> 1.0)
57-
rexml (3.2.5)
58-
rouge (3.21.0)
57+
rexml (3.4.0)
58+
rouge (3.30.0)
5959
safe_yaml (1.0.5)
6060
sassc (2.4.0)
6161
ffi (~> 1.9)
6262
sassc (2.4.0-x64-mingw32)
6363
ffi (~> 1.9)
6464
terminal-table (1.8.0)
6565
unicode-display_width (~> 1.1, >= 1.1.1)
66-
tzinfo (2.0.4)
67-
concurrent-ruby (~> 1.0)
68-
tzinfo-data (1.2021.5)
69-
tzinfo (>= 1.0.0)
70-
unicode-display_width (1.7.0)
71-
wdm (0.1.1)
66+
unicode-display_width (1.8.0)
67+
webrick (1.9.1)
7268

7369
PLATFORMS
7470
ruby
@@ -78,9 +74,7 @@ DEPENDENCIES
7874
jekyll (= 4.1.1)
7975
jekyll-seo-tag (= 2.6.1)
8076
jekyll-sitemap (= 1.3.1)
81-
tzinfo (>= 2.0)
82-
tzinfo-data (>= 1.2020)
83-
wdm (>= 0.1.0)
77+
webrick (~> 1.9)
8478

8579
BUNDLED WITH
8680
2.1.4

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
jekyll:
3-
image: jekyll/jekyll:latest
3+
image: jekyll/jekyll:4
44
ports:
55
- "4000:4000"
66
- "35729:35729"

0 commit comments

Comments
 (0)