steep 0.16.2 → 0.16.3
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/CHANGELOG.md +8 -3
- data/lib/steep.rb +1 -1
- data/lib/steep/drivers/watch.rb +2 -2
- data/lib/steep/version.rb +1 -1
- data/steep.gemspec +0 -1
- metadata +1 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b1c04c7f20a2ed355b58570363447b3e8f2bd1710407de1e23c7b9fbe279cb8
|
4
|
+
data.tar.gz: 62101db41144f3fd218ee8478ab377f3414ad1d8a7689ac73356aa28bf7f6842
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8ac130b1adb7755709f4b1590939b442d6d4b4aa5ea38a95423db539a1b52b0c4078abf1a543b92a84477d99846d5ab30060dc26c693f52785de0c205041a2d
|
7
|
+
data.tar.gz: e7ccec14707e49d51b88429ab0922c4e6fbbc190bbafb0e107c30ea681b04415245e40708909fd28458a89a565a816fd88a6bfa1c14b76e24185a2ece153148c
|
data/CHANGELOG.md
CHANGED
@@ -2,15 +2,20 @@
|
|
2
2
|
|
3
3
|
## master
|
4
4
|
|
5
|
+
## 0.16.3
|
6
|
+
|
7
|
+
* Fix `steep watch` ([#147](https://github.com/soutaro/steep/pull/147))
|
8
|
+
* Stop using pry ([#148](https://github.com/soutaro/steep/pull/148))
|
9
|
+
|
5
10
|
## 0.16.2 (2020-05-27)
|
6
11
|
|
7
|
-
* Update gems ([144](https://github.com/soutaro/steep/pull/144), [145](https://github.com/soutaro/steep/pull/145))
|
12
|
+
* Update gems ([#144](https://github.com/soutaro/steep/pull/144), [#145](https://github.com/soutaro/steep/pull/145))
|
8
13
|
|
9
14
|
## 0.16.1 (2020-05-22)
|
10
15
|
|
11
16
|
* Fix constant resolution ([#143](https://github.com/soutaro/steep/pull/143))
|
12
|
-
* Fix RBS diagnostics line number in LSP ([142](https://github.com/soutaro/steep/pull/142))
|
13
|
-
* Fix crash caused by hover on `def` in LSP ([140](https://github.com/soutaro/steep/pull/140))
|
17
|
+
* Fix RBS diagnostics line number in LSP ([#142](https://github.com/soutaro/steep/pull/142))
|
18
|
+
* Fix crash caused by hover on `def` in LSP ([#140](https://github.com/soutaro/steep/pull/140))
|
14
19
|
|
15
20
|
## 0.16.0 (2020-05-19)
|
16
21
|
|
data/lib/steep.rb
CHANGED
data/lib/steep/drivers/watch.rb
CHANGED
@@ -24,7 +24,7 @@ module Steep
|
|
24
24
|
project = load_config()
|
25
25
|
|
26
26
|
loader = Project::FileLoader.new(project: project)
|
27
|
-
loader.load_sources(
|
27
|
+
loader.load_sources(dirs)
|
28
28
|
loader.load_signatures()
|
29
29
|
|
30
30
|
client_read, server_write = IO.pipe
|
@@ -36,7 +36,7 @@ module Steep
|
|
36
36
|
server_reader = LanguageServer::Protocol::Transport::Io::Reader.new(server_read)
|
37
37
|
server_writer = LanguageServer::Protocol::Transport::Io::Writer.new(server_write)
|
38
38
|
|
39
|
-
interaction_worker = Server::
|
39
|
+
interaction_worker = Server::WorkerProcess.spawn_worker(:interaction, name: "interaction", steepfile: project.steepfile_path)
|
40
40
|
signature_worker = Server::WorkerProcess.spawn_worker(:signature, name: "signature", steepfile: project.steepfile_path)
|
41
41
|
code_workers = Server::WorkerProcess.spawn_code_workers(steepfile: project.steepfile_path)
|
42
42
|
|
data/lib/steep/version.rb
CHANGED
data/steep.gemspec
CHANGED
@@ -40,7 +40,6 @@ Gem::Specification.new do |spec|
|
|
40
40
|
spec.add_runtime_dependency "activesupport", ">= 5.1"
|
41
41
|
spec.add_runtime_dependency "rainbow", ">= 2.2.2", "< 4.0"
|
42
42
|
spec.add_runtime_dependency "listen", "~> 3.1"
|
43
|
-
spec.add_runtime_dependency "pry", ">= 0.12.2"
|
44
43
|
spec.add_runtime_dependency "language_server-protocol", "~> 3.14.0.2"
|
45
44
|
spec.add_runtime_dependency "rbs", "~> 0.3.1"
|
46
45
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: steep
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Soutaro Matsumoto
|
@@ -170,20 +170,6 @@ dependencies:
|
|
170
170
|
- - "~>"
|
171
171
|
- !ruby/object:Gem::Version
|
172
172
|
version: '3.1'
|
173
|
-
- !ruby/object:Gem::Dependency
|
174
|
-
name: pry
|
175
|
-
requirement: !ruby/object:Gem::Requirement
|
176
|
-
requirements:
|
177
|
-
- - ">="
|
178
|
-
- !ruby/object:Gem::Version
|
179
|
-
version: 0.12.2
|
180
|
-
type: :runtime
|
181
|
-
prerelease: false
|
182
|
-
version_requirements: !ruby/object:Gem::Requirement
|
183
|
-
requirements:
|
184
|
-
- - ">="
|
185
|
-
- !ruby/object:Gem::Version
|
186
|
-
version: 0.12.2
|
187
173
|
- !ruby/object:Gem::Dependency
|
188
174
|
name: language_server-protocol
|
189
175
|
requirement: !ruby/object:Gem::Requirement
|