Skip to content

Commit 1260e68

Browse files
committed
Upgrade to Ruby 2.7.5 and apply bundle update.
1 parent 619dab6 commit 1260e68

File tree

5 files changed

+25
-26
lines changed

5 files changed

+25
-26
lines changed

.github/workflows/ci.yml

+1-1
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

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source "https://rubygems.org"
2-
ruby '2.4.4'
2+
ruby '2.7.5'
33
gem 'ruby_dep', '1.3.1'
44
gem 'jekyll', '3.8.5'
55
gem 'jekyll-paginate', '1.1.0'

Gemfile.lock

+21-22
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ 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)
2222
jekyll (3.8.5)
@@ -41,33 +41,32 @@ 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)
46+
json (2.6.1)
4747
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)
48+
liquid (4.0.3)
49+
listen (3.7.1)
50+
rb-fsevent (~> 0.10, >= 0.10.3)
51+
rb-inotify (~> 0.9, >= 0.9.10)
5352
mercenary (0.3.6)
5453
pathutil (0.16.2)
5554
forwardable-extended (~> 2.6)
5655
public_suffix (4.0.6)
5756
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)
57+
rb-fsevent (0.11.1)
58+
rb-inotify (0.10.1)
59+
ffi (~> 1.0)
60+
rouge (3.28.0)
6261
ruby_dep (1.3.1)
63-
safe_yaml (1.0.4)
62+
safe_yaml (1.0.5)
6463
sass (3.4.20)
6564
sprockets (3.7.2)
6665
concurrent-ruby (~> 1.0)
6766
rack (> 1, < 3)
68-
sprockets-helpers (1.2.1)
67+
sprockets-helpers (1.4.0)
6968
sprockets (>= 2.2)
70-
tilt (2.0.9)
69+
tilt (2.0.10)
7170
uglifier (2.7.2)
7271
execjs (>= 0.3.0)
7372
json (>= 1.8.0)
@@ -86,7 +85,7 @@ DEPENDENCIES
8685
uglifier (= 2.7.2)
8786

8887
RUBY VERSION
89-
ruby 2.4.4p296
88+
ruby 2.7.5p203
9089

9190
BUNDLED WITH
92-
2.0.1
91+
2.3.7

README.md

+1-1
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)