ruby-lsp 0.14.5 → 0.15.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/exe/ruby-lsp +1 -16
- data/exe/ruby-lsp-check +13 -22
- data/lib/ruby_indexer/lib/ruby_indexer/collector.rb +21 -0
- data/lib/ruby_indexer/lib/ruby_indexer/configuration.rb +12 -24
- data/lib/ruby_indexer/lib/ruby_indexer/entry.rb +16 -0
- data/lib/ruby_indexer/lib/ruby_indexer/index.rb +3 -2
- data/lib/ruby_indexer/test/classes_and_modules_test.rb +46 -0
- data/lib/ruby_indexer/test/configuration_test.rb +2 -11
- data/lib/ruby_indexer/test/index_test.rb +5 -0
- data/lib/ruby_lsp/addon.rb +18 -5
- data/lib/ruby_lsp/base_server.rb +147 -0
- data/lib/ruby_lsp/document.rb +0 -5
- data/lib/ruby_lsp/{requests/support/dependency_detector.rb → global_state.rb} +30 -9
- data/lib/ruby_lsp/internal.rb +2 -1
- data/lib/ruby_lsp/listeners/code_lens.rb +66 -18
- data/lib/ruby_lsp/listeners/completion.rb +13 -14
- data/lib/ruby_lsp/listeners/definition.rb +4 -3
- data/lib/ruby_lsp/listeners/document_symbol.rb +91 -3
- data/lib/ruby_lsp/listeners/hover.rb +6 -5
- data/lib/ruby_lsp/listeners/signature_help.rb +7 -4
- data/lib/ruby_lsp/load_sorbet.rb +62 -0
- data/lib/ruby_lsp/requests/code_lens.rb +4 -3
- data/lib/ruby_lsp/requests/completion.rb +15 -4
- data/lib/ruby_lsp/requests/completion_resolve.rb +56 -0
- data/lib/ruby_lsp/requests/definition.rb +18 -5
- data/lib/ruby_lsp/requests/document_symbol.rb +3 -3
- data/lib/ruby_lsp/requests/hover.rb +9 -5
- data/lib/ruby_lsp/requests/request.rb +51 -0
- data/lib/ruby_lsp/requests/signature_help.rb +4 -3
- data/lib/ruby_lsp/requests/support/common.rb +25 -5
- data/lib/ruby_lsp/requests/support/rubocop_runner.rb +4 -0
- data/lib/ruby_lsp/requests/workspace_symbol.rb +5 -4
- data/lib/ruby_lsp/requests.rb +2 -0
- data/lib/ruby_lsp/server.rb +756 -142
- data/lib/ruby_lsp/store.rb +0 -8
- data/lib/ruby_lsp/test_helper.rb +45 -0
- data/lib/ruby_lsp/utils.rb +68 -33
- metadata +8 -5
- data/lib/ruby_lsp/executor.rb +0 -612
data/lib/ruby_lsp/store.rb
CHANGED
@@ -8,18 +8,12 @@ module RubyLsp
|
|
8
8
|
sig { returns(String) }
|
9
9
|
attr_accessor :encoding
|
10
10
|
|
11
|
-
sig { returns(String) }
|
12
|
-
attr_accessor :formatter
|
13
|
-
|
14
11
|
sig { returns(T::Boolean) }
|
15
12
|
attr_accessor :supports_progress
|
16
13
|
|
17
14
|
sig { returns(T::Boolean) }
|
18
15
|
attr_accessor :experimental_features
|
19
16
|
|
20
|
-
sig { returns(URI::Generic) }
|
21
|
-
attr_accessor :workspace_uri
|
22
|
-
|
23
17
|
sig { returns(T::Hash[Symbol, RequestConfig]) }
|
24
18
|
attr_accessor :features_configuration
|
25
19
|
|
@@ -30,10 +24,8 @@ module RubyLsp
|
|
30
24
|
def initialize
|
31
25
|
@state = T.let({}, T::Hash[String, Document])
|
32
26
|
@encoding = T.let(Constant::PositionEncodingKind::UTF8, String)
|
33
|
-
@formatter = T.let("auto", String)
|
34
27
|
@supports_progress = T.let(true, T::Boolean)
|
35
28
|
@experimental_features = T.let(false, T::Boolean)
|
36
|
-
@workspace_uri = T.let(URI::Generic.from_path(path: Dir.pwd), URI::Generic)
|
37
29
|
@features_configuration = T.let(
|
38
30
|
{
|
39
31
|
inlayHint: RequestConfig.new({
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# typed: strict
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
# NOTE: This module is intended to be used by addons for writing their own tests, so keep that in mind if changing.
|
5
|
+
|
6
|
+
module RubyLsp
|
7
|
+
module TestHelper
|
8
|
+
extend T::Sig
|
9
|
+
|
10
|
+
sig do
|
11
|
+
type_parameters(:T)
|
12
|
+
.params(
|
13
|
+
source: T.nilable(String),
|
14
|
+
uri: URI::Generic,
|
15
|
+
stub_no_typechecker: T::Boolean,
|
16
|
+
block: T.proc.params(server: RubyLsp::Server, uri: URI::Generic).returns(T.type_parameter(:T)),
|
17
|
+
).returns(T.type_parameter(:T))
|
18
|
+
end
|
19
|
+
def with_server(source = nil, uri = Kernel.URI("file:///fake.rb"), stub_no_typechecker: false, &block)
|
20
|
+
server = RubyLsp::Server.new(test_mode: true)
|
21
|
+
server.global_state.stubs(:typechecker).returns(false) if stub_no_typechecker
|
22
|
+
|
23
|
+
if source
|
24
|
+
server.process_message({
|
25
|
+
method: "textDocument/didOpen",
|
26
|
+
params: {
|
27
|
+
textDocument: {
|
28
|
+
uri: uri,
|
29
|
+
text: source,
|
30
|
+
version: 1,
|
31
|
+
},
|
32
|
+
},
|
33
|
+
})
|
34
|
+
end
|
35
|
+
|
36
|
+
server.global_state.index.index_single(
|
37
|
+
RubyIndexer::IndexablePath.new(nil, T.must(uri.to_standardized_path)),
|
38
|
+
source,
|
39
|
+
)
|
40
|
+
block.call(server, uri)
|
41
|
+
ensure
|
42
|
+
T.must(server).run_shutdown
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
data/lib/ruby_lsp/utils.rb
CHANGED
@@ -2,8 +2,13 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module RubyLsp
|
5
|
+
# rubocop:disable RubyLsp/UseLanguageServerAliases
|
6
|
+
Interface = LanguageServer::Protocol::Interface
|
7
|
+
Constant = LanguageServer::Protocol::Constant
|
8
|
+
Transport = LanguageServer::Protocol::Transport
|
9
|
+
# rubocop:enable RubyLsp/UseLanguageServerAliases
|
10
|
+
|
5
11
|
# Used to indicate that a request shouldn't return a response
|
6
|
-
VOID = T.let(Object.new.freeze, Object)
|
7
12
|
BUNDLE_PATH = T.let(
|
8
13
|
begin
|
9
14
|
Bundler.bundle_path.to_s
|
@@ -26,19 +31,22 @@ module RubyLsp
|
|
26
31
|
extend T::Sig
|
27
32
|
extend T::Helpers
|
28
33
|
|
29
|
-
abstract!
|
30
|
-
|
31
34
|
sig { returns(String) }
|
32
|
-
attr_reader :
|
35
|
+
attr_reader :method
|
33
36
|
|
34
37
|
sig { returns(Object) }
|
35
38
|
attr_reader :params
|
36
39
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
+
abstract!
|
41
|
+
|
42
|
+
sig { params(method: String, params: Object).void }
|
43
|
+
def initialize(method:, params:)
|
44
|
+
@method = method
|
40
45
|
@params = params
|
41
46
|
end
|
47
|
+
|
48
|
+
sig { abstract.returns(T::Hash[Symbol, T.untyped]) }
|
49
|
+
def to_hash; end
|
42
50
|
end
|
43
51
|
|
44
52
|
class Notification < Message
|
@@ -47,7 +55,7 @@ module RubyLsp
|
|
47
55
|
sig { params(message: String).returns(Notification) }
|
48
56
|
def window_show_error(message)
|
49
57
|
new(
|
50
|
-
|
58
|
+
method: "window/showMessage",
|
51
59
|
params: Interface::ShowMessageParams.new(
|
52
60
|
type: Constant::MessageType::ERROR,
|
53
61
|
message: message,
|
@@ -55,46 +63,73 @@ module RubyLsp
|
|
55
63
|
)
|
56
64
|
end
|
57
65
|
end
|
58
|
-
end
|
59
66
|
|
60
|
-
class Request < Message; end
|
61
|
-
|
62
|
-
# The final result of running a request before its IO is finalized
|
63
|
-
class Result
|
64
67
|
extend T::Sig
|
65
68
|
|
66
|
-
sig { returns(T.untyped) }
|
67
|
-
|
69
|
+
sig { override.returns(T::Hash[Symbol, T.untyped]) }
|
70
|
+
def to_hash
|
71
|
+
{ method: @method, params: T.unsafe(@params).to_hash }
|
72
|
+
end
|
73
|
+
end
|
68
74
|
|
69
|
-
|
70
|
-
|
75
|
+
class Request < Message
|
76
|
+
extend T::Sig
|
71
77
|
|
72
|
-
sig { params(
|
73
|
-
def initialize(
|
74
|
-
@
|
75
|
-
|
78
|
+
sig { params(id: Integer, method: String, params: Object).void }
|
79
|
+
def initialize(id:, method:, params:)
|
80
|
+
@id = id
|
81
|
+
super(method: method, params: params)
|
82
|
+
end
|
83
|
+
|
84
|
+
sig { override.returns(T::Hash[Symbol, T.untyped]) }
|
85
|
+
def to_hash
|
86
|
+
{ id: @id, method: @method, params: T.unsafe(@params).to_hash }
|
76
87
|
end
|
77
88
|
end
|
78
89
|
|
79
|
-
|
80
|
-
class Job
|
90
|
+
class Error
|
81
91
|
extend T::Sig
|
82
92
|
|
93
|
+
sig { returns(String) }
|
94
|
+
attr_reader :message
|
95
|
+
|
96
|
+
sig { params(id: Integer, code: Integer, message: String, data: T.nilable(T::Hash[Symbol, T.untyped])).void }
|
97
|
+
def initialize(id:, code:, message:, data: nil)
|
98
|
+
@id = id
|
99
|
+
@code = code
|
100
|
+
@message = message
|
101
|
+
@data = data
|
102
|
+
end
|
103
|
+
|
83
104
|
sig { returns(T::Hash[Symbol, T.untyped]) }
|
84
|
-
|
105
|
+
def to_hash
|
106
|
+
{
|
107
|
+
id: @id,
|
108
|
+
error: {
|
109
|
+
code: @code,
|
110
|
+
message: @message,
|
111
|
+
data: @data,
|
112
|
+
},
|
113
|
+
}
|
114
|
+
end
|
115
|
+
end
|
85
116
|
|
86
|
-
|
87
|
-
|
117
|
+
# The final result of running a request before its IO is finalized
|
118
|
+
class Result
|
119
|
+
extend T::Sig
|
88
120
|
|
89
|
-
sig {
|
90
|
-
|
91
|
-
|
92
|
-
|
121
|
+
sig { returns(T.untyped) }
|
122
|
+
attr_reader :response
|
123
|
+
|
124
|
+
sig { params(id: Integer, response: T.untyped).void }
|
125
|
+
def initialize(id:, response:)
|
126
|
+
@id = id
|
127
|
+
@response = response
|
93
128
|
end
|
94
129
|
|
95
|
-
sig {
|
96
|
-
def
|
97
|
-
@
|
130
|
+
sig { returns(T::Hash[Symbol, T.untyped]) }
|
131
|
+
def to_hash
|
132
|
+
{ id: @id, result: @response }
|
98
133
|
end
|
99
134
|
end
|
100
135
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-lsp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shopify
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: language_server-protocol
|
@@ -93,9 +93,10 @@ files:
|
|
93
93
|
- lib/ruby_indexer/test/prefix_tree_test.rb
|
94
94
|
- lib/ruby_indexer/test/test_case.rb
|
95
95
|
- lib/ruby_lsp/addon.rb
|
96
|
+
- lib/ruby_lsp/base_server.rb
|
96
97
|
- lib/ruby_lsp/check_docs.rb
|
97
98
|
- lib/ruby_lsp/document.rb
|
98
|
-
- lib/ruby_lsp/
|
99
|
+
- lib/ruby_lsp/global_state.rb
|
99
100
|
- lib/ruby_lsp/internal.rb
|
100
101
|
- lib/ruby_lsp/listeners/code_lens.rb
|
101
102
|
- lib/ruby_lsp/listeners/completion.rb
|
@@ -108,12 +109,14 @@ files:
|
|
108
109
|
- lib/ruby_lsp/listeners/inlay_hints.rb
|
109
110
|
- lib/ruby_lsp/listeners/semantic_highlighting.rb
|
110
111
|
- lib/ruby_lsp/listeners/signature_help.rb
|
112
|
+
- lib/ruby_lsp/load_sorbet.rb
|
111
113
|
- lib/ruby_lsp/parameter_scope.rb
|
112
114
|
- lib/ruby_lsp/requests.rb
|
113
115
|
- lib/ruby_lsp/requests/code_action_resolve.rb
|
114
116
|
- lib/ruby_lsp/requests/code_actions.rb
|
115
117
|
- lib/ruby_lsp/requests/code_lens.rb
|
116
118
|
- lib/ruby_lsp/requests/completion.rb
|
119
|
+
- lib/ruby_lsp/requests/completion_resolve.rb
|
117
120
|
- lib/ruby_lsp/requests/definition.rb
|
118
121
|
- lib/ruby_lsp/requests/diagnostics.rb
|
119
122
|
- lib/ruby_lsp/requests/document_highlight.rb
|
@@ -131,7 +134,6 @@ files:
|
|
131
134
|
- lib/ruby_lsp/requests/signature_help.rb
|
132
135
|
- lib/ruby_lsp/requests/support/annotation.rb
|
133
136
|
- lib/ruby_lsp/requests/support/common.rb
|
134
|
-
- lib/ruby_lsp/requests/support/dependency_detector.rb
|
135
137
|
- lib/ruby_lsp/requests/support/formatter_runner.rb
|
136
138
|
- lib/ruby_lsp/requests/support/rubocop_diagnostic.rb
|
137
139
|
- lib/ruby_lsp/requests/support/rubocop_diagnostics_runner.rb
|
@@ -153,6 +155,7 @@ files:
|
|
153
155
|
- lib/ruby_lsp/server.rb
|
154
156
|
- lib/ruby_lsp/setup_bundler.rb
|
155
157
|
- lib/ruby_lsp/store.rb
|
158
|
+
- lib/ruby_lsp/test_helper.rb
|
156
159
|
- lib/ruby_lsp/utils.rb
|
157
160
|
homepage: https://github.com/Shopify/ruby-lsp
|
158
161
|
licenses:
|
@@ -175,7 +178,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
175
178
|
- !ruby/object:Gem::Version
|
176
179
|
version: '0'
|
177
180
|
requirements: []
|
178
|
-
rubygems_version: 3.5.
|
181
|
+
rubygems_version: 3.5.7
|
179
182
|
signing_key:
|
180
183
|
specification_version: 4
|
181
184
|
summary: An opinionated language server for Ruby
|