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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52986c644b9226c230f1bbdd1d3badf69da3110411867680e703c14099471fac
4
- data.tar.gz: c65fbb8df2d0248bf4afa6661e5234f2085b8e02a32d6b55b744f245b6f66ffe
3
+ metadata.gz: b1a17f3fdb888a1828bd5e749755889731bda421dd69829b8fd139ae6001c0ab
4
+ data.tar.gz: 27dc2d21f4738b7c79dc4d354f4e3950d5201151fbebdf3b38a0a551ab9e4b0c
5
5
  SHA512:
6
- metadata.gz: ad6700cdf02654aac2ba13ad0fd1c26f3d089b3fa68b24be124dcc63b4c4541dea1b0988ff49f9690c7746cbe5b750c5d15b79000f406fd46d13fd42c2fd2ce2
7
- data.tar.gz: f9ec082a8a53513d8376abc9b8b180373f574a5eabe14d0cade1e481d15bfa5ad5830642d35aed93ea3cd872b0ca54171766887e07b5879cb1b2011a8fa3421f
6
+ metadata.gz: 6d45b07640cff8d260f4fe1f45215a9259f27e733d2700a698fa2dd2d373624cd20c0e3f4e1bf8596beee29b21e6b2be9506b9a274bb17415982d4410d2ca524
7
+ data.tar.gz: '085cc63548292c16c15d878492cccf72e07b77b3b28fcd32e58cae99364d3b24a134e5a4ed4501b3ecbdbfd8a88ea3d2ac149b8b46f09d419ba1733e67f16827'
data/.cz.yaml CHANGED
@@ -15,7 +15,7 @@ commitizen:
15
15
  - mise run format
16
16
  tag_format: v$version
17
17
  update_changelog_on_bump: true
18
- version: 1.0.9
18
+ version: 1.0.10
19
19
  version_files:
20
20
  - lib/sorbet_typed/short_circuit/version.rb
21
21
  version_scheme: semver2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## v1.0.10 (2025-11-28)
2
+
3
+ ### Fix
4
+
5
+ - add methods expected on Shorted signal by some low level stuff (webmock?)
6
+
1
7
  ## v1.0.9 (2025-11-28)
2
8
 
3
9
  ### Fix
@@ -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
@@ -6,7 +6,7 @@
6
6
  # -- Disabled, because this file gets required in gemspec, where zeitwerk is not active
7
7
  module SorbetTyped
8
8
  class ShortCircuit
9
- VERSION = '1.0.9'
9
+ VERSION = '1.0.10'
10
10
  end
11
11
  end
12
12
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sorbet_typed-short_circuit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Kramer