ruby-lsp 0.23.12 → 0.23.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/lib/rubocop/cop/ruby_lsp/use_language_server_aliases.rb +1 -1
  4. data/lib/ruby_indexer/lib/ruby_indexer/configuration.rb +31 -40
  5. data/lib/ruby_indexer/lib/ruby_indexer/declaration_listener.rb +56 -22
  6. data/lib/ruby_indexer/lib/ruby_indexer/enhancement.rb +1 -1
  7. data/lib/ruby_indexer/lib/ruby_indexer/entry.rb +15 -18
  8. data/lib/ruby_indexer/lib/ruby_indexer/index.rb +8 -11
  9. data/lib/ruby_indexer/lib/ruby_indexer/prefix_tree.rb +2 -2
  10. data/lib/ruby_indexer/lib/ruby_indexer/rbs_indexer.rb +1 -1
  11. data/lib/ruby_indexer/lib/ruby_indexer/reference_finder.rb +2 -2
  12. data/lib/ruby_indexer/test/configuration_test.rb +10 -1
  13. data/lib/ruby_indexer/test/method_test.rb +26 -0
  14. data/lib/ruby_indexer/test/rbs_indexer_test.rb +1 -1
  15. data/lib/ruby_lsp/addon.rb +12 -4
  16. data/lib/ruby_lsp/base_server.rb +19 -22
  17. data/lib/ruby_lsp/client_capabilities.rb +6 -6
  18. data/lib/ruby_lsp/document.rb +13 -13
  19. data/lib/ruby_lsp/erb_document.rb +7 -9
  20. data/lib/ruby_lsp/global_state.rb +21 -24
  21. data/lib/ruby_lsp/listeners/code_lens.rb +59 -48
  22. data/lib/ruby_lsp/listeners/completion.rb +2 -2
  23. data/lib/ruby_lsp/listeners/definition.rb +2 -2
  24. data/lib/ruby_lsp/listeners/document_highlight.rb +62 -80
  25. data/lib/ruby_lsp/listeners/document_link.rb +34 -43
  26. data/lib/ruby_lsp/listeners/document_symbol.rb +1 -1
  27. data/lib/ruby_lsp/listeners/folding_ranges.rb +1 -1
  28. data/lib/ruby_lsp/listeners/hover.rb +43 -52
  29. data/lib/ruby_lsp/listeners/inlay_hints.rb +1 -1
  30. data/lib/ruby_lsp/listeners/semantic_highlighting.rb +11 -14
  31. data/lib/ruby_lsp/listeners/signature_help.rb +2 -2
  32. data/lib/ruby_lsp/listeners/spec_style.rb +15 -59
  33. data/lib/ruby_lsp/listeners/test_discovery.rb +89 -0
  34. data/lib/ruby_lsp/listeners/test_style.rb +47 -81
  35. data/lib/ruby_lsp/node_context.rb +4 -4
  36. data/lib/ruby_lsp/rbs_document.rb +1 -1
  37. data/lib/ruby_lsp/requests/code_actions.rb +9 -12
  38. data/lib/ruby_lsp/requests/code_lens.rb +2 -4
  39. data/lib/ruby_lsp/requests/completion.rb +3 -5
  40. data/lib/ruby_lsp/requests/completion_resolve.rb +1 -1
  41. data/lib/ruby_lsp/requests/definition.rb +4 -5
  42. data/lib/ruby_lsp/requests/diagnostics.rb +2 -2
  43. data/lib/ruby_lsp/requests/discover_tests.rb +3 -2
  44. data/lib/ruby_lsp/requests/document_highlight.rb +2 -4
  45. data/lib/ruby_lsp/requests/document_link.rb +2 -4
  46. data/lib/ruby_lsp/requests/document_symbol.rb +1 -1
  47. data/lib/ruby_lsp/requests/folding_ranges.rb +3 -8
  48. data/lib/ruby_lsp/requests/formatting.rb +2 -2
  49. data/lib/ruby_lsp/requests/go_to_relevant_file.rb +3 -3
  50. data/lib/ruby_lsp/requests/hover.rb +2 -2
  51. data/lib/ruby_lsp/requests/inlay_hints.rb +2 -4
  52. data/lib/ruby_lsp/requests/on_type_formatting.rb +10 -13
  53. data/lib/ruby_lsp/requests/prepare_rename.rb +1 -1
  54. data/lib/ruby_lsp/requests/range_formatting.rb +2 -2
  55. data/lib/ruby_lsp/requests/references.rb +1 -1
  56. data/lib/ruby_lsp/requests/rename.rb +2 -2
  57. data/lib/ruby_lsp/requests/request.rb +2 -2
  58. data/lib/ruby_lsp/requests/selection_ranges.rb +2 -2
  59. data/lib/ruby_lsp/requests/semantic_highlighting.rb +5 -7
  60. data/lib/ruby_lsp/requests/show_syntax_tree.rb +1 -1
  61. data/lib/ruby_lsp/requests/signature_help.rb +2 -2
  62. data/lib/ruby_lsp/requests/support/common.rb +1 -1
  63. data/lib/ruby_lsp/requests/support/rubocop_diagnostic.rb +15 -21
  64. data/lib/ruby_lsp/requests/support/rubocop_formatter.rb +2 -2
  65. data/lib/ruby_lsp/requests/support/rubocop_runner.rb +12 -18
  66. data/lib/ruby_lsp/requests/support/sorbet.rb +28 -31
  67. data/lib/ruby_lsp/requests/support/source_uri.rb +11 -14
  68. data/lib/ruby_lsp/requests/support/syntax_tree_formatter.rb +5 -9
  69. data/lib/ruby_lsp/requests/support/test_item.rb +4 -9
  70. data/lib/ruby_lsp/requests/type_hierarchy_supertypes.rb +1 -1
  71. data/lib/ruby_lsp/requests/workspace_symbol.rb +1 -1
  72. data/lib/ruby_lsp/response_builders/collection_response_builder.rb +1 -1
  73. data/lib/ruby_lsp/response_builders/document_symbol.rb +2 -5
  74. data/lib/ruby_lsp/response_builders/hover.rb +5 -8
  75. data/lib/ruby_lsp/response_builders/semantic_highlighting.rb +41 -47
  76. data/lib/ruby_lsp/response_builders/signature_help.rb +1 -1
  77. data/lib/ruby_lsp/response_builders/test_collection.rb +1 -1
  78. data/lib/ruby_lsp/ruby_document.rb +7 -20
  79. data/lib/ruby_lsp/ruby_lsp_reporter_plugin.rb +7 -4
  80. data/lib/ruby_lsp/scope.rb +1 -1
  81. data/lib/ruby_lsp/server.rb +9 -1
  82. data/lib/ruby_lsp/setup_bundler.rb +36 -42
  83. data/lib/ruby_lsp/static_docs.rb +4 -7
  84. data/lib/ruby_lsp/store.rb +9 -12
  85. data/lib/ruby_lsp/test_reporter.rb +140 -4
  86. data/lib/ruby_lsp/test_unit_test_runner.rb +10 -8
  87. data/lib/ruby_lsp/utils.rb +10 -16
  88. metadata +3 -2
@@ -6,23 +6,20 @@ require "uri/file"
6
6
  module URI
7
7
  # Must be kept in sync with the one in Tapioca
8
8
  class Source < URI::File
9
- COMPONENT = T.let(
10
- [
11
- :scheme,
12
- :gem_name,
13
- :gem_version,
14
- :path,
15
- :line_number,
16
- ].freeze,
17
- T::Array[Symbol],
18
- )
9
+ COMPONENT = [
10
+ :scheme,
11
+ :gem_name,
12
+ :gem_version,
13
+ :path,
14
+ :line_number,
15
+ ].freeze #: Array[Symbol]
19
16
 
20
17
  # `uri` for Ruby 3.4 switched the default parser from RFC2396 to RFC3986. The new parser emits a deprecation
21
18
  # warning on a few methods and delegates them to RFC2396, namely `extract`/`make_regexp`/`escape`/`unescape`.
22
19
  # On earlier versions of the uri gem, the RFC2396_PARSER constant doesn't exist, so it needs some special
23
20
  # handling to select a parser that doesn't emit deprecations. While it was backported to Ruby 3.1, users may
24
21
  # have the uri gem in their own bundle and thus not use a compatible version.
25
- PARSER = T.let(const_defined?(:RFC2396_PARSER) ? RFC2396_PARSER : DEFAULT_PARSER, RFC2396_Parser)
22
+ PARSER = const_defined?(:RFC2396_PARSER) ? RFC2396_PARSER : DEFAULT_PARSER #: RFC2396_Parser
26
23
 
27
24
  T.unsafe(self).alias_method(:gem_name, :host)
28
25
  T.unsafe(self).alias_method(:line_number, :fragment)
@@ -50,8 +47,8 @@ module URI
50
47
 
51
48
  gem_version, path = v.delete_prefix("/").split("/", 2)
52
49
 
53
- @gem_version = T.let(gem_version, T.nilable(String))
54
- @path = T.let(path, T.nilable(String))
50
+ @gem_version = gem_version #: String?
51
+ @path = path #: String?
55
52
  end
56
53
 
57
54
  #: (String? v) -> bool
@@ -74,7 +71,7 @@ module URI
74
71
  if URI.respond_to?(:register_scheme)
75
72
  URI.register_scheme("SOURCE", self)
76
73
  else
77
- @@schemes = T.let(@@schemes, T::Hash[String, T.untyped]) # rubocop:disable Style/ClassVars
74
+ @@schemes = @@schemes # rubocop:disable Style/ClassVars #: Hash[String, untyped]
78
75
  @@schemes["SOURCE"] = self
79
76
  end
80
77
  end
@@ -17,15 +17,11 @@ module RubyLsp
17
17
 
18
18
  #: -> void
19
19
  def initialize
20
- @options =
21
- T.let(
22
- begin
23
- opts = SyntaxTree::CLI::Options.new
24
- opts.parse(SyntaxTree::CLI::ConfigFile.new.arguments)
25
- opts
26
- end,
27
- SyntaxTree::CLI::Options,
28
- )
20
+ @options = begin
21
+ opts = SyntaxTree::CLI::Options.new
22
+ opts.parse(SyntaxTree::CLI::ConfigFile.new.arguments)
23
+ opts
24
+ end #: SyntaxTree::CLI::Options
29
25
  end
30
26
 
31
27
  # @override
@@ -13,14 +13,14 @@ module RubyLsp
13
13
  #: String
14
14
  attr_reader :id, :label
15
15
 
16
- #: (String id, String label, URI::Generic uri, Interface::Range range, Array[Symbol] tags) -> void
17
- def initialize(id, label, uri, range, tags: [])
16
+ #: (String id, String label, URI::Generic uri, Interface::Range range, Symbol framework) -> void
17
+ def initialize(id, label, uri, range, framework:)
18
18
  @id = id
19
19
  @label = label
20
20
  @uri = uri
21
21
  @range = range
22
- @tags = tags
23
- @children = T.let({}, T::Hash[String, TestItem])
22
+ @tags = ["framework:#{framework}"] #: Array[String]
23
+ @children = {} #: Hash[String, TestItem]
24
24
  end
25
25
 
26
26
  #: (TestItem item) -> void
@@ -38,11 +38,6 @@ module RubyLsp
38
38
  @children.values
39
39
  end
40
40
 
41
- #: (Symbol) -> bool
42
- def tag?(tag)
43
- @tags.include?(tag)
44
- end
45
-
46
41
  #: -> Hash[Symbol, untyped]
47
42
  def to_hash
48
43
  {
@@ -23,7 +23,7 @@ module RubyLsp
23
23
  name = @item[:name]
24
24
  entries = @index[name]
25
25
 
26
- parents = T.let(Set.new, T::Set[RubyIndexer::Entry::Namespace])
26
+ parents = Set.new #: Set[RubyIndexer::Entry::Namespace]
27
27
  return unless entries&.any?
28
28
 
29
29
  entries.each do |entry|
@@ -14,7 +14,7 @@ module RubyLsp
14
14
  super()
15
15
  @global_state = global_state
16
16
  @query = query
17
- @index = T.let(global_state.index, RubyIndexer::Index)
17
+ @index = global_state.index #: RubyIndexer::Index
18
18
  end
19
19
 
20
20
  # @override
@@ -11,7 +11,7 @@ module RubyLsp
11
11
  #: -> void
12
12
  def initialize
13
13
  super
14
- @items = T.let([], T::Array[ResponseType])
14
+ @items = [] #: Array[ResponseType]
15
15
  end
16
16
 
17
17
  #: (ResponseType item) -> void
@@ -12,17 +12,14 @@ module RubyLsp
12
12
 
13
13
  #: -> void
14
14
  def initialize
15
- @children = T.let([], T::Array[Interface::DocumentSymbol])
15
+ @children = [] #: Array[Interface::DocumentSymbol]
16
16
  end
17
17
  end
18
18
 
19
19
  #: -> void
20
20
  def initialize
21
21
  super
22
- @stack = T.let(
23
- [SymbolHierarchyRoot.new],
24
- T::Array[T.any(SymbolHierarchyRoot, Interface::DocumentSymbol)],
25
- )
22
+ @stack = [SymbolHierarchyRoot.new] #: Array[(SymbolHierarchyRoot | Interface::DocumentSymbol)]
26
23
  end
27
24
 
28
25
  #: (Interface::DocumentSymbol symbol) -> void
@@ -12,14 +12,11 @@ module RubyLsp
12
12
  def initialize
13
13
  super
14
14
 
15
- @response = T.let(
16
- {
17
- title: +"",
18
- links: +"",
19
- documentation: +"",
20
- },
21
- T::Hash[Symbol, String],
22
- )
15
+ @response = {
16
+ title: +"",
17
+ links: +"",
18
+ documentation: +"",
19
+ } #: Hash[Symbol, String]
23
20
  end
24
21
 
25
22
  #: (String content, category: Symbol) -> void
@@ -6,50 +6,44 @@ module RubyLsp
6
6
  class SemanticHighlighting < ResponseBuilder
7
7
  class UndefinedTokenType < StandardError; end
8
8
 
9
- TOKEN_TYPES = T.let(
10
- {
11
- namespace: 0,
12
- type: 1,
13
- class: 2,
14
- enum: 3,
15
- interface: 4,
16
- struct: 5,
17
- typeParameter: 6,
18
- parameter: 7,
19
- variable: 8,
20
- property: 9,
21
- enumMember: 10,
22
- event: 11,
23
- function: 12,
24
- method: 13,
25
- macro: 14,
26
- keyword: 15,
27
- modifier: 16,
28
- comment: 17,
29
- string: 18,
30
- number: 19,
31
- regexp: 20,
32
- operator: 21,
33
- decorator: 22,
34
- }.freeze,
35
- T::Hash[Symbol, Integer],
36
- )
37
-
38
- TOKEN_MODIFIERS = T.let(
39
- {
40
- declaration: 0,
41
- definition: 1,
42
- readonly: 2,
43
- static: 3,
44
- deprecated: 4,
45
- abstract: 5,
46
- async: 6,
47
- modification: 7,
48
- documentation: 8,
49
- default_library: 9,
50
- }.freeze,
51
- T::Hash[Symbol, Integer],
52
- )
9
+ TOKEN_TYPES = {
10
+ namespace: 0,
11
+ type: 1,
12
+ class: 2,
13
+ enum: 3,
14
+ interface: 4,
15
+ struct: 5,
16
+ typeParameter: 6,
17
+ parameter: 7,
18
+ variable: 8,
19
+ property: 9,
20
+ enumMember: 10,
21
+ event: 11,
22
+ function: 12,
23
+ method: 13,
24
+ macro: 14,
25
+ keyword: 15,
26
+ modifier: 16,
27
+ comment: 17,
28
+ string: 18,
29
+ number: 19,
30
+ regexp: 20,
31
+ operator: 21,
32
+ decorator: 22,
33
+ }.freeze #: Hash[Symbol, Integer]
34
+
35
+ TOKEN_MODIFIERS = {
36
+ declaration: 0,
37
+ definition: 1,
38
+ readonly: 2,
39
+ static: 3,
40
+ deprecated: 4,
41
+ abstract: 5,
42
+ async: 6,
43
+ modification: 7,
44
+ documentation: 8,
45
+ default_library: 9,
46
+ }.freeze #: Hash[Symbol, Integer]
53
47
 
54
48
  ResponseType = type_member { { fixed: Interface::SemanticTokens } }
55
49
 
@@ -57,7 +51,7 @@ module RubyLsp
57
51
  def initialize(code_units_cache)
58
52
  super()
59
53
  @code_units_cache = code_units_cache
60
- @stack = T.let([], T::Array[SemanticToken])
54
+ @stack = [] #: Array[SemanticToken]
61
55
  end
62
56
 
63
57
  #: (Prism::Location location, Symbol type, ?Array[Symbol] modifiers) -> void
@@ -143,8 +137,8 @@ module RubyLsp
143
137
  class SemanticTokenEncoder
144
138
  #: -> void
145
139
  def initialize
146
- @current_row = T.let(0, Integer)
147
- @current_column = T.let(0, Integer)
140
+ @current_row = 0 #: Integer
141
+ @current_column = 0 #: Integer
148
142
  end
149
143
 
150
144
  #: (Array[SemanticToken] tokens) -> Array[Integer]
@@ -9,7 +9,7 @@ module RubyLsp
9
9
  #: -> void
10
10
  def initialize
11
11
  super
12
- @signature_help = T.let(nil, ResponseType)
12
+ @signature_help = nil #: ResponseType
13
13
  end
14
14
 
15
15
  #: (ResponseType signature_help) -> void
@@ -11,7 +11,7 @@ module RubyLsp
11
11
  #: -> void
12
12
  def initialize
13
13
  super
14
- @items = T.let({}, T::Hash[String, ResponseType])
14
+ @items = {} #: Hash[String, ResponseType]
15
15
  end
16
16
 
17
17
  #: (ResponseType item) -> void
@@ -36,24 +36,13 @@ module RubyLsp
36
36
  class << self
37
37
  #: (Prism::Node node, Integer char_position, code_units_cache: (^(Integer arg0) -> Integer | Prism::CodeUnitsCache), ?node_types: Array[singleton(Prism::Node)]) -> NodeContext
38
38
  def locate(node, char_position, code_units_cache:, node_types: [])
39
- queue = T.let(node.child_nodes.compact, T::Array[T.nilable(Prism::Node)])
39
+ queue = node.child_nodes.compact #: Array[Prism::Node?]
40
40
  closest = node
41
- parent = T.let(nil, T.nilable(Prism::Node))
42
- nesting_nodes = T.let(
43
- [],
44
- T::Array[T.any(
45
- Prism::ClassNode,
46
- Prism::ModuleNode,
47
- Prism::SingletonClassNode,
48
- Prism::DefNode,
49
- Prism::BlockNode,
50
- Prism::LambdaNode,
51
- Prism::ProgramNode,
52
- )],
53
- )
41
+ parent = nil #: Prism::Node?
42
+ nesting_nodes = [] #: Array[(Prism::ClassNode | Prism::ModuleNode | Prism::SingletonClassNode | Prism::DefNode | Prism::BlockNode | Prism::LambdaNode | Prism::ProgramNode)] # rubocop:disable Layout/LineLength
54
43
 
55
44
  nesting_nodes << node if node.is_a?(Prism::ProgramNode)
56
- call_node = T.let(nil, T.nilable(Prism::CallNode))
45
+ call_node = nil #: Prism::CallNode?
57
46
 
58
47
  until queue.empty?
59
48
  candidate = queue.shift
@@ -143,10 +132,8 @@ module RubyLsp
143
132
  #: (source: String, version: Integer, uri: URI::Generic, global_state: GlobalState) -> void
144
133
  def initialize(source:, version:, uri:, global_state:)
145
134
  super
146
- @code_units_cache = T.let(@parse_result.code_units_cache(@encoding), T.any(
147
- T.proc.params(arg0: Integer).returns(Integer),
148
- Prism::CodeUnitsCache,
149
- ))
135
+ @code_units_cache = @parse_result
136
+ .code_units_cache(@encoding) #: (^(Integer arg0) -> Integer | Prism::CodeUnitsCache)
150
137
  end
151
138
 
152
139
  # @override
@@ -197,7 +184,7 @@ module RubyLsp
197
184
  start_position, end_position = find_index_by_position(range[:start], range[:end])
198
185
 
199
186
  desired_range = (start_position...end_position)
200
- queue = T.let(@parse_result.value.child_nodes.compact, T::Array[T.nilable(Prism::Node)])
187
+ queue = @parse_result.value.child_nodes.compact #: Array[Prism::Node?]
201
188
 
202
189
  until queue.empty?
203
190
  candidate = queue.shift
@@ -1,18 +1,22 @@
1
1
  # typed: strict
2
2
  # frozen_string_literal: true
3
3
 
4
+ begin
5
+ require "minitest"
6
+ rescue LoadError
7
+ return
8
+ end
9
+
4
10
  require_relative "test_reporter"
5
11
  require "ruby_indexer/lib/ruby_indexer/uri"
6
12
 
7
- require "minitest"
8
-
9
13
  module Minitest
10
14
  module Reporters
11
15
  class RubyLspReporter < ::Minitest::AbstractReporter
12
16
  class << self
13
17
  #: (Hash[untyped, untyped]) -> void
14
18
  def minitest_plugin_init(_options)
15
- Minitest.reporter.reporters = [RubyLspReporter.new]
19
+ Minitest.reporter.reporters << RubyLspReporter.new
16
20
  end
17
21
  end
18
22
 
@@ -54,7 +58,6 @@ module Minitest
54
58
  def record_skip(result)
55
59
  RubyLsp::TestReporter.record_skip(
56
60
  id: id_from_result(result),
57
- message: result.failure.message,
58
61
  uri: uri_from_result(result),
59
62
  )
60
63
  end
@@ -11,7 +11,7 @@ module RubyLsp
11
11
  @parent = parent
12
12
 
13
13
  # A hash of name => type
14
- @locals = T.let({}, T::Hash[Symbol, Local])
14
+ @locals = {} #: Hash[Symbol, Local]
15
15
  end
16
16
 
17
17
  # Add a new local to this scope. The types should only be `:parameter` or `:variable`
@@ -1459,10 +1459,18 @@ module RubyLsp
1459
1459
  #: (Hash[Symbol, untyped] message) -> void
1460
1460
  def resolve_test_commands(message)
1461
1461
  items = message.dig(:params, :items)
1462
+ commands = Listeners::TestStyle.resolve_test_commands(items)
1463
+
1464
+ Addon.addons.each do |addon|
1465
+ commands.concat(addon.resolve_test_commands(items))
1466
+ end
1462
1467
 
1463
1468
  send_message(Result.new(
1464
1469
  id: message[:id],
1465
- response: { commands: Listeners::TestStyle.resolve_test_commands(items) },
1470
+ response: {
1471
+ commands: commands,
1472
+ reporterPaths: [Listeners::TestStyle::MINITEST_REPORTER_PATH, Listeners::TestStyle::TEST_UNIT_REPORTER_PATH],
1473
+ },
1466
1474
  ))
1467
1475
  end
1468
1476
  end
@@ -25,45 +25,42 @@ module RubyLsp
25
25
  class BundleNotLocked < StandardError; end
26
26
  class BundleInstallFailure < StandardError; end
27
27
 
28
- FOUR_HOURS = T.let(4 * 60 * 60, Integer)
28
+ FOUR_HOURS = 4 * 60 * 60 #: Integer
29
29
 
30
30
  #: (String project_path, **untyped options) -> void
31
31
  def initialize(project_path, **options)
32
32
  @project_path = project_path
33
- @branch = T.let(options[:branch], T.nilable(String))
34
- @launcher = T.let(options[:launcher], T.nilable(T::Boolean))
33
+ @branch = options[:branch] #: String?
34
+ @launcher = options[:launcher] #: bool?
35
35
  patch_thor_to_print_progress_to_stderr! if @launcher
36
36
 
37
37
  # Regular bundle paths
38
- @gemfile = T.let(
39
- begin
40
- Bundler.default_gemfile
41
- rescue Bundler::GemfileNotFound
42
- nil
43
- end,
44
- T.nilable(Pathname),
45
- )
46
- @lockfile = T.let(@gemfile ? Bundler.default_lockfile : nil, T.nilable(Pathname))
38
+ @gemfile = begin
39
+ Bundler.default_gemfile
40
+ rescue Bundler::GemfileNotFound
41
+ nil
42
+ end #: Pathname?
43
+ @lockfile = @gemfile ? Bundler.default_lockfile : nil #: Pathname?
47
44
 
48
- @gemfile_hash = T.let(@gemfile ? Digest::SHA256.hexdigest(@gemfile.read) : nil, T.nilable(String))
49
- @lockfile_hash = T.let(@lockfile&.exist? ? Digest::SHA256.hexdigest(@lockfile.read) : nil, T.nilable(String))
45
+ @gemfile_hash = @gemfile ? Digest::SHA256.hexdigest(@gemfile.read) : nil #: String?
46
+ @lockfile_hash = @lockfile&.exist? ? Digest::SHA256.hexdigest(@lockfile.read) : nil #: String?
50
47
 
51
- @gemfile_name = T.let(@gemfile&.basename&.to_s || "Gemfile", String)
48
+ @gemfile_name = @gemfile&.basename&.to_s || "Gemfile" #: String
52
49
 
53
50
  # Custom bundle paths
54
- @custom_dir = T.let(Pathname.new(".ruby-lsp").expand_path(@project_path), Pathname)
55
- @custom_gemfile = T.let(@custom_dir + @gemfile_name, Pathname)
56
- @custom_lockfile = T.let(@custom_dir + (@lockfile&.basename || "Gemfile.lock"), Pathname)
57
- @lockfile_hash_path = T.let(@custom_dir + "main_lockfile_hash", Pathname)
58
- @last_updated_path = T.let(@custom_dir + "last_updated", Pathname)
59
- @error_path = T.let(@custom_dir + "install_error", Pathname)
60
- @already_composed_path = T.let(@custom_dir + "bundle_is_composed", Pathname)
51
+ @custom_dir = Pathname.new(".ruby-lsp").expand_path(@project_path) #: Pathname
52
+ @custom_gemfile = @custom_dir + @gemfile_name #: Pathname
53
+ @custom_lockfile = @custom_dir + (@lockfile&.basename || "Gemfile.lock") #: Pathname
54
+ @lockfile_hash_path = @custom_dir + "main_lockfile_hash" #: Pathname
55
+ @last_updated_path = @custom_dir + "last_updated" #: Pathname
56
+ @error_path = @custom_dir + "install_error" #: Pathname
57
+ @already_composed_path = @custom_dir + "bundle_is_composed" #: Pathname
61
58
 
62
59
  dependencies, bundler_version = load_dependencies
63
- @dependencies = T.let(dependencies, T::Hash[String, T.untyped])
64
- @bundler_version = T.let(bundler_version, T.nilable(Gem::Version))
65
- @rails_app = T.let(rails_app?, T::Boolean)
66
- @retry = T.let(false, T::Boolean)
60
+ @dependencies = dependencies #: Hash[String, untyped]
61
+ @bundler_version = bundler_version #: Gem::Version?
62
+ @rails_app = rails_app? #: bool
63
+ @retry = false #: bool
67
64
  end
68
65
 
69
66
  # Sets up the composed bundle and returns the `BUNDLE_GEMFILE`, `BUNDLE_PATH` and `BUNDLE_APP_CONFIG` that should be
@@ -130,21 +127,18 @@ module RubyLsp
130
127
 
131
128
  #: -> Hash[String, untyped]
132
129
  def composed_bundle_dependencies
133
- @composed_bundle_dependencies ||= T.let(
134
- begin
135
- original_bundle_gemfile = ENV["BUNDLE_GEMFILE"]
136
-
137
- if @custom_lockfile.exist?
138
- ENV["BUNDLE_GEMFILE"] = @custom_gemfile.to_s
139
- Bundler::LockfileParser.new(@custom_lockfile.read).dependencies
140
- else
141
- {}
142
- end
143
- ensure
144
- ENV["BUNDLE_GEMFILE"] = original_bundle_gemfile
145
- end,
146
- T.nilable(T::Hash[String, T.untyped]),
147
- )
130
+ @composed_bundle_dependencies ||= begin
131
+ original_bundle_gemfile = ENV["BUNDLE_GEMFILE"]
132
+
133
+ if @custom_lockfile.exist?
134
+ ENV["BUNDLE_GEMFILE"] = @custom_gemfile.to_s
135
+ Bundler::LockfileParser.new(@custom_lockfile.read).dependencies
136
+ else
137
+ {}
138
+ end
139
+ ensure
140
+ ENV["BUNDLE_GEMFILE"] = original_bundle_gemfile
141
+ end #: Hash[String, untyped]?
148
142
  end
149
143
 
150
144
  #: -> void
@@ -269,7 +263,7 @@ module RubyLsp
269
263
  T.unsafe(ENV).merge!(env)
270
264
 
271
265
  unless should_update && !force_install
272
- Bundler::CLI::Install.new({}).run
266
+ Bundler::CLI::Install.new({ "no-cache" => true }).run
273
267
  correct_relative_remote_paths if @custom_lockfile.exist?
274
268
  return env
275
269
  end
@@ -3,13 +3,10 @@
3
3
 
4
4
  module RubyLsp
5
5
  # The path to the `static_docs` directory, where we keep long-form static documentation
6
- STATIC_DOCS_PATH = T.let(File.join(File.dirname(File.dirname(T.must(__dir__))), "static_docs"), String)
6
+ STATIC_DOCS_PATH = File.join(File.dirname(File.dirname(T.must(__dir__))), "static_docs") #: String
7
7
 
8
8
  # A map of keyword => short documentation to be displayed on hover or completion
9
- KEYWORD_DOCS = T.let(
10
- {
11
- "yield" => "Invokes the passed block with the given arguments",
12
- }.freeze,
13
- T::Hash[String, String],
14
- )
9
+ KEYWORD_DOCS = {
10
+ "yield" => "Invokes the passed block with the given arguments",
11
+ }.freeze #: Hash[String, String]
15
12
  end
@@ -14,18 +14,15 @@ module RubyLsp
14
14
  #: (GlobalState global_state) -> void
15
15
  def initialize(global_state)
16
16
  @global_state = global_state
17
- @state = T.let({}, T::Hash[String, Document[T.untyped]])
18
- @features_configuration = T.let(
19
- {
20
- inlayHint: RequestConfig.new({
21
- enableAll: false,
22
- implicitRescue: false,
23
- implicitHashValue: false,
24
- }),
25
- },
26
- T::Hash[Symbol, RequestConfig],
27
- )
28
- @client_name = T.let("Unknown", String)
17
+ @state = {} #: Hash[String, Document[untyped]]
18
+ @features_configuration = {
19
+ inlayHint: RequestConfig.new({
20
+ enableAll: false,
21
+ implicitRescue: false,
22
+ implicitHashValue: false,
23
+ }),
24
+ } #: Hash[Symbol, RequestConfig]
25
+ @client_name = "Unknown" #: String
29
26
  end
30
27
 
31
28
  #: (URI::Generic uri) -> Document[untyped]