Skip to content

Commit 294e05d

Browse files
committed
Merge branch 'main' into andyw8/class-methods-block
2 parents fcc6515 + cba97f8 commit 294e05d

File tree

6 files changed

+123
-138
lines changed

6 files changed

+123
-138
lines changed

Gemfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,3 @@ platforms :mingw, :x64_mingw, :mswin, :jruby do
2323
gem "tzinfo"
2424
gem "tzinfo-data"
2525
end
26-
27-
gem "ruby-lsp", github: "Shopify/ruby-lsp", branch: "11-14-allow_indexing_enhancements_to_create_namespaces"

Gemfile.lock

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
1-
GIT
2-
remote: https://github.com/Shopify/ruby-lsp.git
3-
revision: bb3a5b25da4ba2931278fdeb1f0fbdf40b8545c3
4-
branch: 11-14-allow_indexing_enhancements_to_create_namespaces
5-
specs:
6-
ruby-lsp (0.21.4)
7-
language_server-protocol (~> 3.17.0)
8-
prism (>= 1.2, < 2.0)
9-
rbs (>= 3, < 4)
10-
sorbet-runtime (>= 0.5.10782)
11-
121
PATH
132
remote: .
143
specs:
154
ruby-lsp-rails (0.3.26)
16-
ruby-lsp (>= 0.21.2, < 0.22.0)
5+
ruby-lsp (>= 0.22.0, < 0.23.0)
176

187
GEM
198
remote: https://rubygems.org/
@@ -140,8 +129,6 @@ GEM
140129
nio4r (2.7.4)
141130
nokogiri (1.16.7-arm64-darwin)
142131
racc (~> 1.4)
143-
nokogiri (1.16.7-x64-mingw-ucrt)
144-
racc (~> 1.4)
145132
nokogiri (1.16.7-x86_64-darwin)
146133
racc (~> 1.4)
147134
nokogiri (1.16.7-x86_64-linux)
@@ -225,6 +212,11 @@ GEM
225212
rubocop (~> 1.51)
226213
rubocop-sorbet (0.8.7)
227214
rubocop (>= 1)
215+
ruby-lsp (0.22.0)
216+
language_server-protocol (~> 3.17.0)
217+
prism (>= 1.2, < 2.0)
218+
rbs (>= 3, < 4)
219+
sorbet-runtime (>= 0.5.10782)
228220
ruby-progressbar (1.13.0)
229221
ruby2_keywords (0.0.5)
230222
securerandom (0.3.1)
@@ -242,7 +234,6 @@ GEM
242234
sorbet-static-and-runtime (>= 0.5.10187)
243235
thor (>= 0.19.2)
244236
sqlite3 (2.1.0-arm64-darwin)
245-
sqlite3 (2.1.0-x64-mingw-ucrt)
246237
sqlite3 (2.1.0-x86_64-darwin)
247238
sqlite3 (2.1.0-x86_64-linux-gnu)
248239
stringio (3.1.2)
@@ -275,7 +266,6 @@ GEM
275266

276267
PLATFORMS
277268
arm64-darwin
278-
x64-mingw-ucrt
279269
x86_64-darwin
280270
x86_64-linux
281271

@@ -289,7 +279,6 @@ DEPENDENCIES
289279
rubocop-rake (~> 0.6.0)
290280
rubocop-shopify (~> 2.15)
291281
rubocop-sorbet (~> 0.8)
292-
ruby-lsp!
293282
ruby-lsp-rails!
294283
sorbet-static-and-runtime
295284
sqlite3

lib/ruby_lsp/ruby_lsp_rails/runner_client.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ def create_client(outgoing_queue)
4444

4545
class InitializationError < StandardError; end
4646
class MessageError < StandardError; end
47-
class IncompleteMessageError < MessageError; end
4847
class EmptyMessageError < MessageError; end
4948

5049
extend T::Sig

ruby-lsp-rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
2424
Dir["lib/**/*", "LICENSE.txt", "Rakefile", "README.md"]
2525
end
2626

27-
spec.add_dependency("ruby-lsp", ">= 0.21.2", "< 0.22.0")
27+
spec.add_dependency("ruby-lsp", ">= 0.22.0", "< 0.23.0")
2828
end

0 commit comments

Comments
 (0)