Skip to content

Commit 35ae76a

Browse files
committed
Ruby 3.4
1 parent 5aba542 commit 35ae76a

3 files changed

Lines changed: 27 additions & 25 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
ruby-version: ["3.3"]
22+
ruby-version: ["3.4"]
2323

2424
steps:
2525
- uses: actions/checkout@v4
@@ -42,7 +42,7 @@ jobs:
4242
- name: Set up Ruby
4343
uses: ruby/setup-ruby@v1
4444
with:
45-
ruby-version: "3.3"
45+
ruby-version: .ruby-version
4646
bundler-cache: true
4747
- name: Run Rubocop
4848
run: |

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.6
1+
3.4.1

Gemfile.lock

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activemodel (7.2.2)
5-
activesupport (= 7.2.2)
6-
activerecord (7.2.2)
7-
activemodel (= 7.2.2)
8-
activesupport (= 7.2.2)
4+
activemodel (8.0.1)
5+
activesupport (= 8.0.1)
6+
activerecord (8.0.1)
7+
activemodel (= 8.0.1)
8+
activesupport (= 8.0.1)
99
timeout (>= 0.4.0)
10-
activesupport (7.2.2)
10+
activesupport (8.0.1)
1111
base64
1212
benchmark (>= 0.3)
1313
bigdecimal
@@ -19,11 +19,12 @@ GEM
1919
minitest (>= 5.1)
2020
securerandom (>= 0.3)
2121
tzinfo (~> 2.0, >= 2.0.5)
22+
uri (>= 0.13.1)
2223
addressable (2.8.7)
2324
public_suffix (>= 2.0.2, < 7.0)
2425
base64 (0.2.0)
25-
benchmark (0.3.0)
26-
bigdecimal (3.1.8)
26+
benchmark (0.4.0)
27+
bigdecimal (3.1.9)
2728
builder (3.3.0)
2829
concurrent-ruby (1.3.4)
2930
connection_pool (2.4.1)
@@ -47,14 +48,14 @@ GEM
4748
faraday-em_synchrony (1.0.0)
4849
faraday-excon (1.1.0)
4950
faraday-httpclient (1.0.1)
50-
faraday-multipart (1.0.4)
51-
multipart-post (~> 2)
51+
faraday-multipart (1.1.0)
52+
multipart-post (~> 2.0)
5253
faraday-net_http (1.0.2)
5354
faraday-net_http_persistent (1.2.0)
5455
faraday-patron (1.0.0)
5556
faraday-rack (1.0.0)
5657
faraday-retry (1.0.3)
57-
git (2.3.1)
58+
git (2.3.3)
5859
activesupport (>= 5.0)
5960
addressable (~> 2.8)
6061
process_executer (~> 1.1)
@@ -75,7 +76,7 @@ GEM
7576
rack (>= 2.0, < 4)
7677
i18n (1.14.6)
7778
concurrent-ruby (~> 1.0)
78-
io-console (0.7.2)
79+
io-console (0.8.0)
7980
juwelier (2.4.9)
8081
builder
8182
bundler
@@ -92,17 +93,17 @@ GEM
9293
base64
9394
kamelcase (0.0.2)
9495
semver2 (~> 3)
95-
logger (1.6.1)
96-
minitest (5.25.1)
96+
logger (1.6.4)
97+
minitest (5.25.4)
9798
multi_json (1.15.0)
9899
multi_xml (0.7.1)
99100
bigdecimal (~> 3.1)
100101
multipart-post (2.4.1)
101-
mutex_m (0.2.0)
102+
mutex_m (0.3.0)
102103
nkf (0.2.0)
103-
nokogiri (1.16.7-arm64-darwin)
104+
nokogiri (1.18.0-arm64-darwin)
104105
racc (~> 1.4)
105-
nokogiri (1.16.7-x86_64-linux)
106+
nokogiri (1.18.0-x86_64-linux-gnu)
106107
racc (~> 1.4)
107108
oauth2 (1.4.11)
108109
faraday (>= 0.17.3, < 3.0)
@@ -119,7 +120,7 @@ GEM
119120
rchardet (1.8.0)
120121
rdoc (6.3.4.1)
121122
redcarpet (3.6.0)
122-
reline (0.5.10)
123+
reline (0.6.0)
123124
io-console (~> 0.5)
124125
rspec (3.13.0)
125126
rspec-core (~> 3.13.0)
@@ -133,14 +134,15 @@ GEM
133134
rspec-mocks (3.13.2)
134135
diff-lcs (>= 1.2.0, < 2.0)
135136
rspec-support (~> 3.13.0)
136-
rspec-support (3.13.1)
137+
rspec-support (3.13.2)
137138
ruby2_keywords (0.0.5)
138-
securerandom (0.3.1)
139+
securerandom (0.4.1)
139140
semver2 (3.4.2)
140141
thread_safe (0.3.6)
141-
timeout (0.4.2)
142+
timeout (0.4.3)
142143
tzinfo (2.0.6)
143144
concurrent-ruby (~> 1.0)
145+
uri (1.0.2)
144146
yard (0.9.37)
145147

146148
PLATFORMS
@@ -161,4 +163,4 @@ DEPENDENCIES
161163
yard
162164

163165
BUNDLED WITH
164-
2.5.23
166+
2.6.2

0 commit comments

Comments
 (0)