rbs 2.8.1 → 2.8.2
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 +14 -0
- data/Gemfile.lock +1 -1
- data/lib/rbs/definition_builder.rb +1 -1
- data/lib/rbs/version.rb +1 -1
- data/stdlib/yaml/0/yaml.rbs +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf3c8572ef6596d9598901e8674b111f99d4c988561bf568c15eafe52b4cc1bd
|
|
4
|
+
data.tar.gz: 460e6d18775380538a504d7521bc4d29aefb48eba4812ad463c27ea14f3b898e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af9c9b7298ca69a0ab2ada373108559c4719d3bfd4157a44af2f664dd1fc4f4a2ba91d175a11487207f971bb61658757533c778fd2a4d8297d996f1eb36ad3d7
|
|
7
|
+
data.tar.gz: 8bf75a3d6fe3ebd6005a8d0234cf18a14771ef6a6968dfa7c289ad64063d1b3e653730ed3d3376d878d0ff42068f9de588bbe6eb7a66ee060053f51446a1db77
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## master
|
|
4
4
|
|
|
5
|
+
## 2.8.2 (2022-12-21)
|
|
6
|
+
|
|
7
|
+
### Signature updates
|
|
8
|
+
|
|
9
|
+
* `YAML.load` ([#1170](https://github.com/ruby/rbs/pull/1170))
|
|
10
|
+
|
|
11
|
+
### Library changes
|
|
12
|
+
|
|
13
|
+
* Add the methods of the `prepend`ed module itself ([#1182](https://github.com/ruby/rbs/pull/1182))
|
|
14
|
+
|
|
15
|
+
### Miscellaneous
|
|
16
|
+
|
|
17
|
+
* Add `TestSkip` module to skip tests that fails in ruby CI ([#1167](https://github.com/ruby/rbs/pull/1167))
|
|
18
|
+
|
|
5
19
|
## 2.8.1 (2022-11-28)
|
|
6
20
|
|
|
7
21
|
### Signature updates
|
data/Gemfile.lock
CHANGED
|
@@ -263,7 +263,7 @@ module RBS
|
|
|
263
263
|
end
|
|
264
264
|
|
|
265
265
|
one_ancestors.each_prepended_module do |mod|
|
|
266
|
-
defn = build_instance(mod.name)
|
|
266
|
+
defn = build_instance(mod.name, no_self_types: true)
|
|
267
267
|
merge_definition(src: defn,
|
|
268
268
|
dest: definition,
|
|
269
269
|
subst: Substitution.build(defn.type_params, mod.args))
|
data/lib/rbs/version.rb
CHANGED
data/stdlib/yaml/0/yaml.rbs
CHANGED
|
@@ -143,7 +143,7 @@ module YAML
|
|
|
143
143
|
# `fallback` return value, which defaults to `false`. See load for options.
|
|
144
144
|
#
|
|
145
145
|
%a{annotate:rdoc:copy:Psych.load_file}
|
|
146
|
-
def self.load_file: (string, ?fallback: untyped, ?symbolize_names: bool, ?freeze: bool) -> untyped
|
|
146
|
+
def self.load_file: (string | _ToPath, ?fallback: untyped, ?symbolize_names: bool, ?freeze: bool) -> untyped
|
|
147
147
|
|
|
148
148
|
# <!--
|
|
149
149
|
# rdoc-file=ext/psych/lib/psych.rb
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.8.
|
|
4
|
+
version: 2.8.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Soutaro Matsumoto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-12-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: RBS is the language for type signatures for Ruby and standard library
|
|
14
14
|
definitions.
|