Skip to content

Commit f8e6c54

Browse files
Update to latest Ruby version (only used for web test).
1 parent ff42b09 commit f8e6c54

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Ruby
1616
uses: ruby/setup-ruby@v1
1717
with:
18-
ruby-version: 2.7
18+
ruby-version: 3.2
1919
- name: Install apt deps
2020
run: |
2121
sudo apt-get update
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install Ruby
3434
uses: ruby/setup-ruby@v1
3535
with:
36-
ruby-version: 2.7
36+
ruby-version: 3.2
3737
- name: Install apt deps
3838
run: |
3939
sudo apt-get update

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.6
1+
3.2.2

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
source 'https://rubygems.org'
22

3-
gem 'bundler', '~> 1.17'
3+
gem 'bundler', '~> 2.0'
44

55
gem 'pry'
66
gem 'pry-byebug'
77
gem 'rdiscount'
8+
gem 'webrick'

Gemfile.lock

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@ GEM
1313
pry (~> 0.10)
1414
rdiscount (2.2.0.1)
1515
slop (3.6.0)
16+
webrick (1.8.1)
1617

1718
PLATFORMS
1819
ruby
1920

2021
DEPENDENCIES
21-
bundler (~> 1.17)
22+
bundler (~> 2.0)
2223
pry
2324
pry-byebug
2425
rdiscount
26+
webrick
2527

2628
BUNDLED WITH
27-
1.17.3
29+
2.4.15

0 commit comments

Comments
 (0)