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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rubocop/cop/ruby_lsp/use_language_server_aliases.rb +1 -1
- data/lib/ruby_indexer/lib/ruby_indexer/configuration.rb +31 -40
- data/lib/ruby_indexer/lib/ruby_indexer/declaration_listener.rb +56 -22
- data/lib/ruby_indexer/lib/ruby_indexer/enhancement.rb +1 -1
- data/lib/ruby_indexer/lib/ruby_indexer/entry.rb +15 -18
- data/lib/ruby_indexer/lib/ruby_indexer/index.rb +8 -11
- data/lib/ruby_indexer/lib/ruby_indexer/prefix_tree.rb +2 -2
- data/lib/ruby_indexer/lib/ruby_indexer/rbs_indexer.rb +1 -1
- data/lib/ruby_indexer/lib/ruby_indexer/reference_finder.rb +2 -2
- data/lib/ruby_indexer/test/configuration_test.rb +10 -1
- data/lib/ruby_indexer/test/method_test.rb +26 -0
- data/lib/ruby_indexer/test/rbs_indexer_test.rb +1 -1
- data/lib/ruby_lsp/addon.rb +12 -4
- data/lib/ruby_lsp/base_server.rb +19 -22
- data/lib/ruby_lsp/client_capabilities.rb +6 -6
- data/lib/ruby_lsp/document.rb +13 -13
- data/lib/ruby_lsp/erb_document.rb +7 -9
- data/lib/ruby_lsp/global_state.rb +21 -24
- data/lib/ruby_lsp/listeners/code_lens.rb +59 -48
- data/lib/ruby_lsp/listeners/completion.rb +2 -2
- data/lib/ruby_lsp/listeners/definition.rb +2 -2
- data/lib/ruby_lsp/listeners/document_highlight.rb +62 -80
- data/lib/ruby_lsp/listeners/document_link.rb +34 -43
- data/lib/ruby_lsp/listeners/document_symbol.rb +1 -1
- data/lib/ruby_lsp/listeners/folding_ranges.rb +1 -1
- data/lib/ruby_lsp/listeners/hover.rb +43 -52
- data/lib/ruby_lsp/listeners/inlay_hints.rb +1 -1
- data/lib/ruby_lsp/listeners/semantic_highlighting.rb +11 -14
- data/lib/ruby_lsp/listeners/signature_help.rb +2 -2
- data/lib/ruby_lsp/listeners/spec_style.rb +15 -59
- data/lib/ruby_lsp/listeners/test_discovery.rb +89 -0
- data/lib/ruby_lsp/listeners/test_style.rb +47 -81
- data/lib/ruby_lsp/node_context.rb +4 -4
- data/lib/ruby_lsp/rbs_document.rb +1 -1
- data/lib/ruby_lsp/requests/code_actions.rb +9 -12
- data/lib/ruby_lsp/requests/code_lens.rb +2 -4
- data/lib/ruby_lsp/requests/completion.rb +3 -5
- data/lib/ruby_lsp/requests/completion_resolve.rb +1 -1
- data/lib/ruby_lsp/requests/definition.rb +4 -5
- data/lib/ruby_lsp/requests/diagnostics.rb +2 -2
- data/lib/ruby_lsp/requests/discover_tests.rb +3 -2
- data/lib/ruby_lsp/requests/document_highlight.rb +2 -4
- data/lib/ruby_lsp/requests/document_link.rb +2 -4
- data/lib/ruby_lsp/requests/document_symbol.rb +1 -1
- data/lib/ruby_lsp/requests/folding_ranges.rb +3 -8
- data/lib/ruby_lsp/requests/formatting.rb +2 -2
- data/lib/ruby_lsp/requests/go_to_relevant_file.rb +3 -3
- data/lib/ruby_lsp/requests/hover.rb +2 -2
- data/lib/ruby_lsp/requests/inlay_hints.rb +2 -4
- data/lib/ruby_lsp/requests/on_type_formatting.rb +10 -13
- data/lib/ruby_lsp/requests/prepare_rename.rb +1 -1
- data/lib/ruby_lsp/requests/range_formatting.rb +2 -2
- data/lib/ruby_lsp/requests/references.rb +1 -1
- data/lib/ruby_lsp/requests/rename.rb +2 -2
- data/lib/ruby_lsp/requests/request.rb +2 -2
- data/lib/ruby_lsp/requests/selection_ranges.rb +2 -2
- data/lib/ruby_lsp/requests/semantic_highlighting.rb +5 -7
- data/lib/ruby_lsp/requests/show_syntax_tree.rb +1 -1
- data/lib/ruby_lsp/requests/signature_help.rb +2 -2
- data/lib/ruby_lsp/requests/support/common.rb +1 -1
- data/lib/ruby_lsp/requests/support/rubocop_diagnostic.rb +15 -21
- data/lib/ruby_lsp/requests/support/rubocop_formatter.rb +2 -2
- data/lib/ruby_lsp/requests/support/rubocop_runner.rb +12 -18
- data/lib/ruby_lsp/requests/support/sorbet.rb +28 -31
- data/lib/ruby_lsp/requests/support/source_uri.rb +11 -14
- data/lib/ruby_lsp/requests/support/syntax_tree_formatter.rb +5 -9
- data/lib/ruby_lsp/requests/support/test_item.rb +4 -9
- data/lib/ruby_lsp/requests/type_hierarchy_supertypes.rb +1 -1
- data/lib/ruby_lsp/requests/workspace_symbol.rb +1 -1
- data/lib/ruby_lsp/response_builders/collection_response_builder.rb +1 -1
- data/lib/ruby_lsp/response_builders/document_symbol.rb +2 -5
- data/lib/ruby_lsp/response_builders/hover.rb +5 -8
- data/lib/ruby_lsp/response_builders/semantic_highlighting.rb +41 -47
- data/lib/ruby_lsp/response_builders/signature_help.rb +1 -1
- data/lib/ruby_lsp/response_builders/test_collection.rb +1 -1
- data/lib/ruby_lsp/ruby_document.rb +7 -20
- data/lib/ruby_lsp/ruby_lsp_reporter_plugin.rb +7 -4
- data/lib/ruby_lsp/scope.rb +1 -1
- data/lib/ruby_lsp/server.rb +9 -1
- data/lib/ruby_lsp/setup_bundler.rb +36 -42
- data/lib/ruby_lsp/static_docs.rb +4 -7
- data/lib/ruby_lsp/store.rb +9 -12
- data/lib/ruby_lsp/test_reporter.rb +140 -4
- data/lib/ruby_lsp/test_unit_test_runner.rb +10 -8
- data/lib/ruby_lsp/utils.rb +10 -16
- 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 =
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
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 =
|
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 =
|
54
|
-
@path =
|
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 =
|
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
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
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,
|
17
|
-
def initialize(id, label, uri, range,
|
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 =
|
23
|
-
@children =
|
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
|
{
|
@@ -12,17 +12,14 @@ module RubyLsp
|
|
12
12
|
|
13
13
|
#: -> void
|
14
14
|
def initialize
|
15
|
-
@children =
|
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 =
|
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 =
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
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 =
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
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 =
|
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 =
|
147
|
-
@current_column =
|
140
|
+
@current_row = 0 #: Integer
|
141
|
+
@current_column = 0 #: Integer
|
148
142
|
end
|
149
143
|
|
150
144
|
#: (Array[SemanticToken] tokens) -> Array[Integer]
|
@@ -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 =
|
39
|
+
queue = node.child_nodes.compact #: Array[Prism::Node?]
|
40
40
|
closest = node
|
41
|
-
parent =
|
42
|
-
nesting_nodes =
|
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 =
|
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 =
|
147
|
-
|
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 =
|
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
|
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
|
data/lib/ruby_lsp/scope.rb
CHANGED
data/lib/ruby_lsp/server.rb
CHANGED
@@ -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: {
|
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 =
|
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 =
|
34
|
-
@launcher =
|
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 =
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
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 =
|
49
|
-
@lockfile_hash =
|
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 =
|
48
|
+
@gemfile_name = @gemfile&.basename&.to_s || "Gemfile" #: String
|
52
49
|
|
53
50
|
# Custom bundle paths
|
54
|
-
@custom_dir =
|
55
|
-
@custom_gemfile =
|
56
|
-
@custom_lockfile =
|
57
|
-
@lockfile_hash_path =
|
58
|
-
@last_updated_path =
|
59
|
-
@error_path =
|
60
|
-
@already_composed_path =
|
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 =
|
64
|
-
@bundler_version =
|
65
|
-
@rails_app =
|
66
|
-
@retry =
|
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 ||=
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
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
|
data/lib/ruby_lsp/static_docs.rb
CHANGED
@@ -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 =
|
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 =
|
10
|
-
|
11
|
-
|
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
|
data/lib/ruby_lsp/store.rb
CHANGED
@@ -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 =
|
18
|
-
@features_configuration =
|
19
|
-
{
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
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]
|