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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dcd473b07b749d136220c73d4434747c909fc516b5d14332590a5e46abed65f9
4
- data.tar.gz: c652c1608f635556d3c6704746c901b97047b5f2fc670ea563f50aa30d198210
3
+ metadata.gz: f249f7e074584c271aace34633e7eebaf638c53faa821adc8ba20575c44781ac
4
+ data.tar.gz: 19630a5254b0b1d1a0f10dd2d2300111c47773ac5f615ccfe7d33f815edf38c2
5
5
  SHA512:
6
- metadata.gz: 9a540a74cb3d514500a5d57d7111ce45b16cafde7855aa182d0a6a188edf74d7203b17368cc275aa574aaa16f5a7f265eb0a95c1fa9c0a524e42fb78b67bffdc
7
- data.tar.gz: eac07db23cad1f7eeb697d4f27e4548c45174e23d7552e7bd4246494efb25d8a967c10d6f00c112a1b3070b1a86e0131a4e3f0b95af8bf66f65747ba4e57f16b
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
@@ -7,6 +7,6 @@ gem "with_steep_types", path: "test/gems/with_steep_types"
7
7
  gem "without_steep_types", path: "test/gems/without_steep_types"
8
8
 
9
9
  gem "rake"
10
- gem "minitest", "~> 5.0"
10
+ gem "minitest", "~> 5.15"
11
11
  gem "minitest-hooks"
12
12
  gem "stackprof"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- steep (0.47.0)
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 (6.1.4.1)
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.4)
36
- i18n (1.8.11)
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.0)
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.14.4)
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.3.1)
45
+ parser (3.1.0.0)
47
46
  ast (~> 2.4.1)
48
- rainbow (3.0.0)
47
+ rainbow (3.1.1)
49
48
  rake (13.0.6)
50
- rb-fsevent (0.11.0)
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.0)
64
+ minitest (~> 5.15)
67
65
  minitest-hooks
68
66
  rake
69
67
  stackprof
data/lib/steep/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Steep
2
- VERSION = "0.47.0"
2
+ VERSION = "0.47.1"
3
3
  end
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.0
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: 2021-11-30 00:00:00.000000000 Z
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.2.22
536
+ rubygems_version: 3.3.6
537
537
  signing_key:
538
538
  specification_version: 4
539
539
  summary: Gradual Typing for Ruby