Skip to content

Commit 7111c7e

Browse files
authored
Merge pull request #567 from sjrd/upgrades
Upgrades.
2 parents 619dab6 + 6dfb1fd commit 7111c7e

File tree

5 files changed

+36
-31
lines changed

5 files changed

+36
-31
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Ruby
1515
uses: ruby/setup-ruby@v1
1616
with:
17-
ruby-version: 2.4.4
17+
ruby-version: 2.7.5
1818
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
1919
- name: Build
2020
run: bundle exec jekyll build

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Ruby
1212
uses: ruby/setup-ruby@v1
1313
with:
14-
ruby-version: 2.4.4
14+
ruby-version: 2.7.5
1515
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
1616
- name: Build
1717
run: bundle exec jekyll build

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
source "https://rubygems.org"
2-
ruby '2.4.4'
2+
ruby '2.7.5'
33
gem 'ruby_dep', '1.3.1'
4-
gem 'jekyll', '3.8.5'
4+
gem 'jekyll', '3.9.1'
55
gem 'jekyll-paginate', '1.1.0'
66
gem 'jekyll-assets', '2.1.2'
77
gem 'sass', '3.4.20'
88
gem 'execjs', '2.6.0'
99
gem 'uglifier', '2.7.2'
10+
gem "kramdown-parser-gfm", "~> 1.1"

Gemfile.lock

Lines changed: 30 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,29 @@ GEM
44
addressable (2.8.0)
55
public_suffix (>= 2.0.2, < 5.0)
66
colorator (1.1.0)
7-
concurrent-ruby (1.1.3)
8-
em-websocket (0.5.1)
7+
concurrent-ruby (1.1.9)
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)
1313
execjs (2.6.0)
1414
fastimage (1.8.1)
1515
addressable (~> 2.3, >= 2.3.5)
16-
ffi (1.9.25)
17-
ffi (1.9.25-x64-mingw32)
16+
ffi (1.15.5)
17+
ffi (1.15.5-x64-mingw32)
1818
forwardable-extended (2.6.0)
19-
http_parser.rb (0.6.0)
19+
http_parser.rb (0.8.0)
2020
i18n (0.9.5)
2121
concurrent-ruby (~> 1.0)
22-
jekyll (3.8.5)
22+
jekyll (3.9.1)
2323
addressable (~> 2.4)
2424
colorator (~> 1.0)
2525
em-websocket (~> 0.5)
2626
i18n (~> 0.7)
2727
jekyll-sass-converter (~> 1.0)
2828
jekyll-watch (~> 2.0)
29-
kramdown (~> 1.14)
29+
kramdown (>= 1.17, < 3)
3030
liquid (~> 4.0)
3131
mercenary (~> 0.3.3)
3232
pathutil (~> 0.9)
@@ -41,33 +41,36 @@ GEM
4141
jekyll-paginate (1.1.0)
4242
jekyll-sass-converter (1.5.2)
4343
sass (~> 3.4)
44-
jekyll-watch (2.1.2)
44+
jekyll-watch (2.2.1)
4545
listen (~> 3.0)
46-
json (2.3.1)
47-
kramdown (1.17.0)
48-
liquid (4.0.1)
49-
listen (3.1.5)
50-
rb-fsevent (~> 0.9, >= 0.9.4)
51-
rb-inotify (~> 0.9, >= 0.9.7)
52-
ruby_dep (~> 1.2)
46+
json (2.6.1)
47+
kramdown (2.3.1)
48+
rexml
49+
kramdown-parser-gfm (1.1.0)
50+
kramdown (~> 2.0)
51+
liquid (4.0.3)
52+
listen (3.7.1)
53+
rb-fsevent (~> 0.10, >= 0.10.3)
54+
rb-inotify (~> 0.9, >= 0.9.10)
5355
mercenary (0.3.6)
5456
pathutil (0.16.2)
5557
forwardable-extended (~> 2.6)
5658
public_suffix (4.0.6)
5759
rack (2.2.3)
58-
rb-fsevent (0.10.3)
59-
rb-inotify (0.9.10)
60-
ffi (>= 0.5.0, < 2)
61-
rouge (3.3.0)
60+
rb-fsevent (0.11.1)
61+
rb-inotify (0.10.1)
62+
ffi (~> 1.0)
63+
rexml (3.2.5)
64+
rouge (3.28.0)
6265
ruby_dep (1.3.1)
63-
safe_yaml (1.0.4)
66+
safe_yaml (1.0.5)
6467
sass (3.4.20)
6568
sprockets (3.7.2)
6669
concurrent-ruby (~> 1.0)
6770
rack (> 1, < 3)
68-
sprockets-helpers (1.2.1)
71+
sprockets-helpers (1.4.0)
6972
sprockets (>= 2.2)
70-
tilt (2.0.9)
73+
tilt (2.0.10)
7174
uglifier (2.7.2)
7275
execjs (>= 0.3.0)
7376
json (>= 1.8.0)
@@ -78,15 +81,16 @@ PLATFORMS
7881

7982
DEPENDENCIES
8083
execjs (= 2.6.0)
81-
jekyll (= 3.8.5)
84+
jekyll (= 3.9.1)
8285
jekyll-assets (= 2.1.2)
8386
jekyll-paginate (= 1.1.0)
87+
kramdown-parser-gfm (~> 1.1)
8488
ruby_dep (= 1.3.1)
8589
sass (= 3.4.20)
8690
uglifier (= 2.7.2)
8791

8892
RUBY VERSION
89-
ruby 2.4.4p296
93+
ruby 2.7.5p203
9094

9195
BUNDLED WITH
92-
2.0.1
96+
2.3.7

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ we will need to set up some Ruby tooling.
1818
First, install RVM (Ruby Version Manager): https://rvm.io/rvm/install
1919
Then run the following commands:
2020
```bash
21-
$ rvm use 2.4.4 --install
21+
$ rvm use 2.7.5 --install
2222

2323
# Set up Bundler, a Ruby package manager
2424
# It downloads dependencies specified in a Gemfile

0 commit comments

Comments
 (0)