Skip to content

Commit b0f9a0f

Browse files
authored
Update rails & ruby (#95)
* Update to ruby 3.4 * Update rails to 8.0
1 parent dec2303 commit b0f9a0f

3 files changed

Lines changed: 11 additions & 9 deletions

File tree

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inherit_from: .rubocop_todo.yml
88
# Note that changes in the inspected code, or installation of new
99
# versions of RuboCop, may require this file to be generated again.
1010

11-
require:
11+
plugins:
1212
- rubocop-performance
1313
- rubocop-minitest
1414
- rubocop-rake

Gemfile.lock

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
ruby_language_server (0.4.0)
5-
activerecord (~> 7.0)
5+
activerecord (~> 8.0)
66
amatch
77
bundler
88
etc
@@ -14,13 +14,13 @@ PATH
1414
GEM
1515
remote: https://rubygems.org/
1616
specs:
17-
activemodel (7.2.2.1)
18-
activesupport (= 7.2.2.1)
19-
activerecord (7.2.2.1)
20-
activemodel (= 7.2.2.1)
21-
activesupport (= 7.2.2.1)
17+
activemodel (8.0.2)
18+
activesupport (= 8.0.2)
19+
activerecord (8.0.2)
20+
activemodel (= 8.0.2)
21+
activesupport (= 8.0.2)
2222
timeout (>= 0.4.0)
23-
activesupport (7.2.2.1)
23+
activesupport (8.0.2)
2424
base64
2525
benchmark (>= 0.3)
2626
bigdecimal
@@ -32,6 +32,7 @@ GEM
3232
minitest (>= 5.1)
3333
securerandom (>= 0.3)
3434
tzinfo (~> 2.0, >= 2.0.5)
35+
uri (>= 0.13.1)
3536
amatch (0.4.1)
3637
mize
3738
tins (~> 1.0)
@@ -164,6 +165,7 @@ GEM
164165
unicode-display_width (3.1.4)
165166
unicode-emoji (~> 4.0, >= 4.0.4)
166167
unicode-emoji (4.0.4)
168+
uri (1.0.3)
167169

168170
PLATFORMS
169171
aarch64-linux-musl

ruby_language_server.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
3535
spec.require_paths = ['lib']
3636

3737
# Normally the system will have these - but not if it's a stripped down docker image
38-
spec.add_dependency 'activerecord', '~>7.0'
38+
spec.add_dependency 'activerecord', '~>8.0'
3939
spec.add_dependency 'amatch' # in c
4040
spec.add_dependency 'bundler'
4141
spec.add_dependency 'etc'

0 commit comments

Comments
 (0)