steep 0.13.0 → 0.14.0
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 -0
- data/lib/steep.rb +16 -0
- data/lib/steep/ast/types/factory.rb +72 -37
- data/lib/steep/drivers/init.rb +5 -5
- data/lib/steep/drivers/langserver.rb +176 -6
- data/lib/steep/project/completion_provider.rb +302 -0
- data/lib/steep/project/file.rb +45 -35
- data/lib/steep/type_construction.rb +15 -8
- data/lib/steep/typing.rb +13 -2
- data/lib/steep/version.rb +1 -1
- data/smoke/alias/a.rb +1 -1
- data/smoke/regexp/b.rb +4 -4
- data/vendor/ruby-signature/Rakefile +5 -4
- data/vendor/ruby-signature/docs/CONTRIBUTING.md +3 -3
- data/vendor/ruby-signature/lib/ruby/signature/cli.rb +23 -2
- data/vendor/ruby-signature/lib/ruby/signature/parser.y +2 -1
- data/vendor/ruby-signature/lib/ruby/signature/prototype/rb.rb +3 -0
- data/vendor/ruby-signature/lib/ruby/signature/test/spy.rb +3 -0
- data/vendor/ruby-signature/stdlib/builtin/match_data.rbs +233 -103
- data/vendor/ruby-signature/stdlib/builtin/regexp.rbs +1024 -72
- data/vendor/ruby-signature/stdlib/builtin/string.rbs +1773 -649
- metadata +4 -3
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.
|
4
|
+
version: 0.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Soutaro Matsumoto
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-02-
|
11
|
+
date: 2020-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -272,6 +272,7 @@ files:
|
|
272
272
|
- lib/steep/interface/substitution.rb
|
273
273
|
- lib/steep/names.rb
|
274
274
|
- lib/steep/project.rb
|
275
|
+
- lib/steep/project/completion_provider.rb
|
275
276
|
- lib/steep/project/dsl.rb
|
276
277
|
- lib/steep/project/file.rb
|
277
278
|
- lib/steep/project/file_loader.rb
|
@@ -571,7 +572,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
571
572
|
- !ruby/object:Gem::Version
|
572
573
|
version: '0'
|
573
574
|
requirements: []
|
574
|
-
rubygems_version: 3.0.
|
575
|
+
rubygems_version: 3.0.6
|
575
576
|
signing_key:
|
576
577
|
specification_version: 4
|
577
578
|
summary: Gradual Typing for Ruby
|