sorbet_typed-short_circuit 1.0.9 → 1.0.10
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/.cz.yaml +1 -1
- data/CHANGELOG.md +6 -0
- data/lib/sorbet_typed/short_circuit/signals/shorted.rb +16 -0
- data/lib/sorbet_typed/short_circuit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1a17f3fdb888a1828bd5e749755889731bda421dd69829b8fd139ae6001c0ab
|
|
4
|
+
data.tar.gz: 27dc2d21f4738b7c79dc4d354f4e3950d5201151fbebdf3b38a0a551ab9e4b0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d45b07640cff8d260f4fe1f45215a9259f27e733d2700a698fa2dd2d373624cd20c0e3f4e1bf8596beee29b21e6b2be9506b9a274bb17415982d4410d2ca524
|
|
7
|
+
data.tar.gz: '085cc63548292c16c15d878492cccf72e07b77b3b28fcd32e58cae99364d3b24a134e5a4ed4501b3ecbdbfd8a88ea3d2ac149b8b46f09d419ba1733e67f16827'
|
data/.cz.yaml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -53,6 +53,22 @@ module SorbetTyped
|
|
|
53
53
|
def respond_to?(method_name, _include_all = false) # rubocop:disable Style/OptionalBooleanParameter -- mirroring the respond_to? implementation from Object
|
|
54
54
|
method_name == :payload
|
|
55
55
|
end
|
|
56
|
+
|
|
57
|
+
sig { returns(::NilClass) }
|
|
58
|
+
def method
|
|
59
|
+
# :nocov: -- not used within the tests, but seems needed by some low
|
|
60
|
+
# level stuff when implementing ShortCircuit in an actual project
|
|
61
|
+
nil
|
|
62
|
+
# :nocov:
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
sig { returns(::T.class_of(Shorted)) }
|
|
66
|
+
def class
|
|
67
|
+
# :nocov: -- not used within the tests, but seems needed by some low
|
|
68
|
+
# level stuff when implementing ShortCircuit in an actual project
|
|
69
|
+
Shorted
|
|
70
|
+
# :nocov:
|
|
71
|
+
end
|
|
56
72
|
########################################################################
|
|
57
73
|
end
|
|
58
74
|
end
|