steep 0.47.0 → 0.47.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +10 -12
- data/lib/steep/version.rb +1 -1
- data/lib/steep.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f249f7e074584c271aace34633e7eebaf638c53faa821adc8ba20575c44781ac
|
4
|
+
data.tar.gz: 19630a5254b0b1d1a0f10dd2d2300111c47773ac5f615ccfe7d33f815edf38c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d29cf28bca4f9235a7036e966edb7747872ebcd0a49bec3d6d21dcad73dc2f21cec05819b05b4df52b150bd24f998d533fd63b827f439462f3ce4b7173041ecd
|
7
|
+
data.tar.gz: 49f76f139a14b94449a19f1c26847b320fc104ce292eb6f9824bac58b99b0f7b1997c0daf405cb37e58a5ec42d011daa221431d0f7056a326dba5922a72f096e
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
## master
|
4
4
|
|
5
|
+
## 0.47.1 (2022-02-17)
|
6
|
+
|
7
|
+
This update lets Steep run with Active Support 7.
|
8
|
+
|
9
|
+
* Fix ActiveSupport requirement in `lib/steep.rb` ([#484](https://github.com/soutaro/steep/pull/484))
|
10
|
+
|
5
11
|
## 0.47.0 (2021-11-30)
|
6
12
|
|
7
13
|
This update contains update for RBS 1.7.
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
steep (0.47.
|
4
|
+
steep (0.47.1)
|
5
5
|
activesupport (>= 5.1)
|
6
6
|
language_server-protocol (>= 3.15, < 4.0)
|
7
7
|
listen (~> 3.0)
|
@@ -24,30 +24,29 @@ PATH
|
|
24
24
|
GEM
|
25
25
|
remote: https://rubygems.org/
|
26
26
|
specs:
|
27
|
-
activesupport (
|
27
|
+
activesupport (7.0.2.2)
|
28
28
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
29
29
|
i18n (>= 1.6, < 2)
|
30
30
|
minitest (>= 5.1)
|
31
31
|
tzinfo (~> 2.0)
|
32
|
-
zeitwerk (~> 2.3)
|
33
32
|
ast (2.4.2)
|
34
33
|
concurrent-ruby (1.1.9)
|
35
|
-
ffi (1.15.
|
36
|
-
i18n (1.
|
34
|
+
ffi (1.15.5)
|
35
|
+
i18n (1.10.0)
|
37
36
|
concurrent-ruby (~> 1.0)
|
38
37
|
language_server-protocol (3.16.0.3)
|
39
|
-
listen (3.7.
|
38
|
+
listen (3.7.1)
|
40
39
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
41
40
|
rb-inotify (~> 0.9, >= 0.9.10)
|
42
|
-
minitest (5.
|
41
|
+
minitest (5.15.0)
|
43
42
|
minitest-hooks (1.5.0)
|
44
43
|
minitest (> 5.3)
|
45
44
|
parallel (1.21.0)
|
46
|
-
parser (3.0.
|
45
|
+
parser (3.1.0.0)
|
47
46
|
ast (~> 2.4.1)
|
48
|
-
rainbow (3.
|
47
|
+
rainbow (3.1.1)
|
49
48
|
rake (13.0.6)
|
50
|
-
rb-fsevent (0.11.
|
49
|
+
rb-fsevent (0.11.1)
|
51
50
|
rb-inotify (0.10.1)
|
52
51
|
ffi (~> 1.0)
|
53
52
|
rbs (1.7.1)
|
@@ -57,13 +56,12 @@ GEM
|
|
57
56
|
tzinfo (2.0.4)
|
58
57
|
concurrent-ruby (~> 1.0)
|
59
58
|
unicode-display_width (2.1.0)
|
60
|
-
zeitwerk (2.5.1)
|
61
59
|
|
62
60
|
PLATFORMS
|
63
61
|
ruby
|
64
62
|
|
65
63
|
DEPENDENCIES
|
66
|
-
minitest (~> 5.
|
64
|
+
minitest (~> 5.15)
|
67
65
|
minitest-hooks
|
68
66
|
rake
|
69
67
|
stackprof
|
data/lib/steep/version.rb
CHANGED
data/lib/steep.rb
CHANGED
@@ -2,10 +2,10 @@ require "steep/version"
|
|
2
2
|
|
3
3
|
require "pathname"
|
4
4
|
require "parser/ruby30"
|
5
|
+
require "active_support"
|
5
6
|
require "active_support/core_ext/object/try"
|
6
7
|
require "active_support/core_ext/string/inflections"
|
7
8
|
require "logger"
|
8
|
-
require "active_support/tagged_logging"
|
9
9
|
require "rainbow"
|
10
10
|
require "listen"
|
11
11
|
require 'language_server-protocol'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: steep
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.47.
|
4
|
+
version: 0.47.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Soutaro Matsumoto
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parser
|
@@ -533,7 +533,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
533
533
|
- !ruby/object:Gem::Version
|
534
534
|
version: '0'
|
535
535
|
requirements: []
|
536
|
-
rubygems_version: 3.
|
536
|
+
rubygems_version: 3.3.6
|
537
537
|
signing_key:
|
538
538
|
specification_version: 4
|
539
539
|
summary: Gradual Typing for Ruby
|