Skip to content

Commit 1214793

Browse files
authored
Bump Ruby LSP requirement to v0.26 (#636)
* Bump Ruby LSP requirement to v0.26 * Update gem RBIs
1 parent 2e64213 commit 1214793

File tree

11 files changed

+689
-639
lines changed

11 files changed

+689
-639
lines changed

Gemfile.lock

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
ruby-lsp-rails (0.4.7)
5-
ruby-lsp (>= 0.25.0, < 0.26.0)
5+
ruby-lsp (>= 0.26.0, < 0.27.0)
66

77
GEM
88
remote: https://rubygems.org/
@@ -87,17 +87,17 @@ GEM
8787
connection_pool (2.5.3)
8888
crass (1.0.6)
8989
date (3.4.1)
90-
debug (1.10.0)
90+
debug (1.11.0)
9191
irb (~> 1.10)
9292
reline (>= 0.3.8)
9393
drb (2.2.3)
94-
erb (5.0.1)
94+
erb (5.0.2)
9595
erubi (1.13.1)
9696
globalid (1.2.1)
9797
activesupport (>= 6.1)
9898
i18n (1.14.7)
9999
concurrent-ruby (~> 1.0)
100-
io-console (0.8.0)
100+
io-console (0.8.1)
101101
irb (1.15.2)
102102
pp (>= 0.6.0)
103103
rdoc (>= 4.0.0)
@@ -203,7 +203,7 @@ GEM
203203
rbs (4.0.0.dev.4)
204204
logger
205205
prism (>= 1.3.0)
206-
rdoc (6.14.0)
206+
rdoc (6.14.2)
207207
erb
208208
psych (>= 4.0.0)
209209
regexp_parser (2.10.0)
@@ -237,39 +237,39 @@ GEM
237237
rubocop-sorbet (0.10.2)
238238
lint_roller
239239
rubocop (>= 1.75.2)
240-
ruby-lsp (0.25.0)
240+
ruby-lsp (0.26.0)
241241
language_server-protocol (~> 3.17.0)
242242
prism (>= 1.2, < 2.0)
243243
rbs (>= 3, < 5)
244244
ruby-progressbar (1.13.0)
245245
ruby2_keywords (0.0.5)
246246
securerandom (0.4.1)
247-
sorbet (0.5.12222)
248-
sorbet-static (= 0.5.12222)
249-
sorbet-runtime (0.5.12222)
250-
sorbet-static (0.5.12222-aarch64-linux)
251-
sorbet-static (0.5.12222-universal-darwin)
252-
sorbet-static (0.5.12222-x86_64-linux)
253-
sorbet-static-and-runtime (0.5.12222)
254-
sorbet (= 0.5.12222)
255-
sorbet-runtime (= 0.5.12222)
256-
spoom (1.7.4)
247+
sorbet (0.5.12349)
248+
sorbet-static (= 0.5.12349)
249+
sorbet-runtime (0.5.12349)
250+
sorbet-static (0.5.12349-aarch64-linux)
251+
sorbet-static (0.5.12349-universal-darwin)
252+
sorbet-static (0.5.12349-x86_64-linux)
253+
sorbet-static-and-runtime (0.5.12349)
254+
sorbet (= 0.5.12349)
255+
sorbet-runtime (= 0.5.12349)
256+
spoom (1.7.5)
257257
erubi (>= 1.10.0)
258258
prism (>= 0.28.0)
259259
rbi (>= 0.3.3)
260260
rbs (>= 4.0.0.dev.4)
261261
rexml (>= 3.2.6)
262262
sorbet-static-and-runtime (>= 0.5.10187)
263263
thor (>= 0.19.2)
264-
sqlite3 (2.7.2-aarch64-linux-gnu)
265-
sqlite3 (2.7.2-aarch64-linux-musl)
266-
sqlite3 (2.7.2-arm64-darwin)
267-
sqlite3 (2.7.2-x64-mingw-ucrt)
268-
sqlite3 (2.7.2-x86_64-darwin)
269-
sqlite3 (2.7.2-x86_64-linux-gnu)
270-
sqlite3 (2.7.2-x86_64-linux-musl)
264+
sqlite3 (2.7.3-aarch64-linux-gnu)
265+
sqlite3 (2.7.3-aarch64-linux-musl)
266+
sqlite3 (2.7.3-arm64-darwin)
267+
sqlite3 (2.7.3-x64-mingw-ucrt)
268+
sqlite3 (2.7.3-x86_64-darwin)
269+
sqlite3 (2.7.3-x86_64-linux-gnu)
270+
sqlite3 (2.7.3-x86_64-linux-musl)
271271
stringio (3.1.7)
272-
tapioca (0.17.6)
272+
tapioca (0.17.7)
273273
benchmark
274274
bundler (>= 2.2.25)
275275
netrc (>= 0.11.0)

lib/ruby_lsp/ruby_lsp_rails/rails_test_style.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
module RubyLsp
55
module Rails
66
class RailsTestStyle < Listeners::TestDiscovery
7-
BASE_COMMAND = "#{RbConfig.ruby} bin/rails test" #: String
7+
BASE_COMMAND = "bundle exec ruby -r#{Listeners::TestStyle::MINITEST_REPORTER_PATH} bin/rails test" #: String
88

99
class << self
1010
#: (Array[Hash[Symbol, untyped]]) -> Array[String]

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.25.0", "< 0.26.0")
27+
spec.add_dependency("ruby-lsp", ">= 0.26.0", "< 0.27.0")
2828
end
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)