rbs-relaxed 3.9.0.1 → 3.9.4.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/.github/workflows/ruby.yml +24 -2
- data/.github/workflows/typecheck.yml +0 -2
- data/.github/workflows/windows.yml +1 -1
- data/.rubocop.yml +4 -0
- data/CHANGELOG.md +93 -0
- data/Rakefile +17 -2
- data/config.yml +4 -0
- data/core/data.rbs +1 -1
- data/core/enumerator.rbs +14 -2
- data/core/exception.rbs +1 -1
- data/core/hash.rbs +2 -2
- data/core/kernel.rbs +4 -4
- data/core/method.rbs +2 -2
- data/core/module.rbs +4 -4
- data/core/object.rbs +1 -1
- data/core/proc.rbs +2 -2
- data/core/rbs/unnamed/argf.rbs +3 -3
- data/core/rubygems/version.rbs +2 -2
- data/core/string.rbs +3 -3
- data/core/unbound_method.rbs +1 -1
- data/ext/rbs_extension/parser.c +59 -50
- data/ext/rbs_extension/parserstate.c +15 -1
- data/include/rbs/ruby_objs.h +4 -4
- data/lib/rbs/ast/declarations.rb +9 -4
- data/lib/rbs/ast/type_param.rb +0 -10
- data/lib/rbs/collection/config/lockfile_generator.rb +29 -3
- data/lib/rbs/definition.rb +40 -31
- data/lib/rbs/definition_builder/ancestor_builder.rb +2 -0
- data/lib/rbs/definition_builder.rb +86 -34
- data/lib/rbs/environment.rb +8 -4
- data/lib/rbs/errors.rb +10 -31
- data/lib/rbs/prototype/rb.rb +2 -1
- data/lib/rbs/prototype/rbi.rb +2 -1
- data/lib/rbs/prototype/runtime.rb +3 -0
- data/lib/rbs/types.rb +3 -7
- data/lib/rbs/unit_test/type_assertions.rb +2 -2
- data/lib/rbs/unit_test/with_aliases.rb +3 -1
- data/lib/rbs/version.rb +1 -1
- data/sig/annotate/rdoc_source.rbs +2 -0
- data/sig/cli.rbs +2 -0
- data/sig/collection/config/lockfile_generator.rbs +1 -1
- data/sig/declarations.rbs +10 -3
- data/sig/definition.rbs +67 -14
- data/sig/definition_builder.rbs +17 -3
- data/sig/errors.rbs +7 -10
- data/sig/namespace.rbs +1 -1
- data/sig/typename.rbs +1 -1
- data/sig/types.rbs +0 -3
- data/src/ruby_objs.c +8 -4
- data/src/util/rbs_constant_pool.c +1 -1
- data/stdlib/cgi/0/core.rbs +10 -0
- data/stdlib/ipaddr/0/ipaddr.rbs +8 -0
- data/stdlib/net-http/0/net-http.rbs +1 -1
- data/stdlib/openssl/0/openssl.rbs +67 -67
- data/stdlib/resolv/0/resolv.rbs +8 -8
- data/stdlib/socket/0/addrinfo.rbs +1 -1
- data/stdlib/stringio/0/stringio.rbs +1 -1
- data/stdlib/uri/0/common.rbs +17 -0
- metadata +3 -6
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbs-relaxed
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.9.0
|
|
4
|
+
version: 3.9.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Soutaro Matsumoto
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies: []
|
|
13
12
|
description: RBS is the language for type signatures for Ruby and standard library
|
|
14
13
|
definitions.
|
|
@@ -510,7 +509,6 @@ metadata:
|
|
|
510
509
|
homepage_uri: https://github.com/ruby/rbs
|
|
511
510
|
source_code_uri: https://github.com/ruby/rbs.git
|
|
512
511
|
changelog_uri: https://github.com/ruby/rbs/blob/master/CHANGELOG.md
|
|
513
|
-
post_install_message:
|
|
514
512
|
rdoc_options: []
|
|
515
513
|
require_paths:
|
|
516
514
|
- lib
|
|
@@ -525,8 +523,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
525
523
|
- !ruby/object:Gem::Version
|
|
526
524
|
version: '0'
|
|
527
525
|
requirements: []
|
|
528
|
-
rubygems_version: 3.
|
|
529
|
-
signing_key:
|
|
526
|
+
rubygems_version: 3.7.1
|
|
530
527
|
specification_version: 4
|
|
531
528
|
summary: Type signature for Ruby.
|
|
532
529
|
test_files: []
|