sorbet_typed-short_circuit 1.0.9 → 1.0.11

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: b686e4cd54af23bf233a38b107d63bbd9779ac0be68a55ffbf8539f2cc917093
4
+ data.tar.gz: ea88847773df43175958f4513a48545b44be1e6e478c6bc586709343f3c14586
5
5
  SHA512:
6
- metadata.gz: ad6700cdf02654aac2ba13ad0fd1c26f3d089b3fa68b24be124dcc63b4c4541dea1b0988ff49f9690c7746cbe5b750c5d15b79000f406fd46d13fd42c2fd2ce2
7
- data.tar.gz: f9ec082a8a53513d8376abc9b8b180373f574a5eabe14d0cade1e481d15bfa5ad5830642d35aed93ea3cd872b0ca54171766887e07b5879cb1b2011a8fa3421f
6
+ metadata.gz: fa5cae9de2bff0709d6b81f8e022263692159dc82538f6d1c089a5df198359272f97add4ba3f2fe3e5243166a1255cea405c4908428c8029759f1e5416ca2176
7
+ data.tar.gz: 460ddb7fdd59914eec7f11f95158e340283ca66baf1ec90fd4d9da2dd040541e39d4d04cbdc1afcec4f1e2fac59112842644f6e2d0b8fdb41f4916aa9ae21e61
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.11
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,15 @@
1
+ ## v1.0.11 (2025-11-29)
2
+
3
+ ### Fix
4
+
5
+ - **deps**: update sorbet to v0.6.12798
6
+
7
+ ## v1.0.10 (2025-11-28)
8
+
9
+ ### Fix
10
+
11
+ - add methods expected on Shorted signal by some low level stuff (webmock?)
12
+
1
13
  ## v1.0.9 (2025-11-28)
2
14
 
3
15
  ### 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.11'
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.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Kramer
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '0.6'
19
19
  - - "<="
20
20
  - !ruby/object:Gem::Version
21
- version: 0.6.12793
21
+ version: 0.6.12798
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '0.6'
29
29
  - - "<="
30
30
  - !ruby/object:Gem::Version
31
- version: 0.6.12793
31
+ version: 0.6.12798
32
32
  description: ''
33
33
  email:
34
34
  - mail@richardkramer.de