Skip to content

Commit dc959af

Browse files
authored
Upgrade ruby-lsp to fix erb issue (#385)
Upgrade ruby-lsp to fix erb issue
1 parent 80fa522 commit dc959af

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.devcontainer/devcontainer.json

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
"extensions": [
4848
"ms-azuretools.vscode-docker",
4949
"ninoseki.vscode-gem-lens",
50-
"rebornix.ruby",
5150
"eamodio.gitlens",
5251
"github.vscode-pull-request-github",
5352
"wmaurer.change-case",

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ group :development, :test do
5454
end
5555

5656
group :development do
57+
gem 'ruby-lsp', '~> 0.17.7'
5758
gem 'ruby-lsp-rails'
5859
gem 'ruby-lsp-rspec'
5960
end

Gemfile.lock

+13-9
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ GEM
232232
kaminari-core (= 1.2.2)
233233
kaminari-core (1.2.2)
234234
language_server-protocol (3.17.0.3)
235+
logger (1.6.0)
235236
loofah (2.22.0)
236237
crass (~> 1.0.2)
237238
nokogiri (>= 1.12.0)
@@ -295,7 +296,7 @@ GEM
295296
postmark-rails (0.22.1)
296297
actionmailer (>= 3.0.0)
297298
postmark (>= 1.21.3, < 2.0)
298-
prism (0.27.0)
299+
prism (0.30.0)
299300
pry (0.14.2)
300301
coderay (~> 1.1)
301302
method_source (~> 1.0)
@@ -353,6 +354,8 @@ GEM
353354
zeitwerk (~> 2.6)
354355
rainbow (3.1.1)
355356
rake (13.2.1)
357+
rbs (3.5.2)
358+
logger
356359
rdoc (6.7.0)
357360
psych (>= 4.0.0)
358361
regexp_parser (2.7.0)
@@ -409,15 +412,15 @@ GEM
409412
rubocop-rspec (2.18.1)
410413
rubocop (~> 1.33)
411414
rubocop-capybara (~> 2.17)
412-
ruby-lsp (0.16.5)
415+
ruby-lsp (0.17.7)
413416
language_server-protocol (~> 3.17.0)
414-
prism (>= 0.23.0, < 0.28)
417+
prism (>= 0.29.0, < 0.31)
418+
rbs (>= 3, < 4)
415419
sorbet-runtime (>= 0.5.10782)
416-
ruby-lsp-rails (0.3.5)
417-
ruby-lsp (>= 0.16.0, < 0.17.0)
418-
sorbet-runtime (>= 0.5.9897)
419-
ruby-lsp-rspec (0.1.11)
420-
ruby-lsp (~> 0.16.0)
420+
ruby-lsp-rails (0.3.10)
421+
ruby-lsp (>= 0.17.2, < 0.18.0)
422+
ruby-lsp-rspec (0.1.12)
423+
ruby-lsp (~> 0.17.0)
421424
ruby-progressbar (1.11.0)
422425
ruby-vips (2.2.0)
423426
ffi (~> 1.12)
@@ -456,7 +459,7 @@ GEM
456459
snaky_hash (2.0.1)
457460
hashie
458461
version_gem (~> 1.1, >= 1.1.1)
459-
sorbet-runtime (0.5.11357)
462+
sorbet-runtime (0.5.11481)
460463
sprockets (4.2.0)
461464
concurrent-ruby (~> 1.0)
462465
rack (>= 2.2.4, < 4)
@@ -544,6 +547,7 @@ DEPENDENCIES
544547
rubocop-graphql
545548
rubocop-rails
546549
rubocop-rspec
550+
ruby-lsp (~> 0.17.7)
547551
ruby-lsp-rails
548552
ruby-lsp-rspec
549553
scout_apm

0 commit comments

Comments
 (0)