mocktail 1.2.2 → 1.2.3

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: 0d2944636158dbc47b6da4246d28303f274e2740b7d61ccf3359ff1ce668ab40
4
- data.tar.gz: ea0aa33b02f8f9dac5be81bf6a5a394d181f078127a7b9e22fb55d5c30c85808
3
+ metadata.gz: 846ef7f8484c4d2cc0566c5d7629b6a5ec123d969e3881a3db58617f1cd2870a
4
+ data.tar.gz: 16c61a6097d9cc1d2350f4f278d08ae94d0fb346c10875e627706a5d9d8ec371
5
5
  SHA512:
6
- metadata.gz: 15456b62e2fe1157c17b694c9c8d83d1fa42fa64f4cc3a3aa998a3d21ccf8ae13320694ed3ed1ac500a1636210ae9b153b1070fa427ed9dfd04e5a43b29d56b6
7
- data.tar.gz: 193f8fca67cfb78fc2eefc21b0c70cf5f9ddb9028b0ff948472c119ea0350dda587a4a150e7b8cc283ed9cfe4f8e451a323f9517517d73dbfd84a20cedfce2ed
6
+ metadata.gz: 2833970faf892efa75528df04d23954bcb5a9ccfbcaf2ac674558c87766b5210812c72ab73cd380b81600b062d1eab27857520d7f2150a2caddaa75b6e45004b
7
+ data.tar.gz: ac0f9b1f1f79960949cee6baca016496f1a473c9630df7c8b24549dda887e05b65ddaf4816987ff4bca683ce1d6ca3bf447ae0fc918799ae435a007352eccfb1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.2.3
2
+
3
+ * Don't class extend Struct.new
4
+
1
5
  # 1.2.2
2
6
 
3
7
  * As promised in 1.2.1, there were bugs. [#19](https://github.com/testdouble/mocktail/pull/19)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mocktail (1.2.2)
4
+ mocktail (1.2.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,5 +1,5 @@
1
1
  module Mocktail
2
- class Call < Struct.new(
2
+ Call = Struct.new(
3
3
  :singleton,
4
4
  :double,
5
5
  :original_type,
@@ -11,5 +11,4 @@ module Mocktail
11
11
  :block,
12
12
  keyword_init: true
13
13
  )
14
- end
15
14
  end
@@ -1,10 +1,9 @@
1
1
  module Mocktail
2
- class DemoConfig < Struct.new(
2
+ DemoConfig = Struct.new(
3
3
  :ignore_block,
4
4
  :ignore_extra_args,
5
5
  :ignore_arity,
6
6
  :times,
7
7
  keyword_init: true
8
8
  )
9
- end
10
9
  end
@@ -1,10 +1,9 @@
1
1
  module Mocktail
2
- class Double < Struct.new(
2
+ Double = Struct.new(
3
3
  :original_type,
4
4
  :dry_type,
5
5
  :dry_instance,
6
6
  :dry_methods,
7
7
  keyword_init: true
8
8
  )
9
- end
10
9
  end
@@ -1,10 +1,9 @@
1
1
  module Mocktail
2
- class DoubleData < Struct.new(
2
+ DoubleData = Struct.new(
3
3
  :type,
4
4
  :double,
5
5
  :calls,
6
6
  :stubbings,
7
7
  keyword_init: true
8
8
  )
9
- end
10
9
  end
@@ -1,9 +1,8 @@
1
1
  module Mocktail
2
- class FakeMethodData < Struct.new(
2
+ FakeMethodData = Struct.new(
3
3
  :receiver,
4
4
  :calls,
5
5
  :stubbings,
6
6
  keyword_init: true
7
7
  )
8
- end
9
8
  end
@@ -1,5 +1,5 @@
1
1
  module Mocktail
2
- class Signature < Struct.new(
2
+ Signature = Struct.new(
3
3
  :positional_params,
4
4
  :positional_args,
5
5
  :keyword_params,
@@ -8,19 +8,19 @@ module Mocktail
8
8
  :block_arg,
9
9
  keyword_init: true
10
10
  )
11
+ class Signature
11
12
  DEFAULT_REST_ARGS = "args"
12
13
  DEFAULT_REST_KWARGS = "kwargs"
13
14
  DEFAULT_BLOCK_PARAM = "blk"
14
15
  end
15
16
 
16
- class Params < Struct.new(
17
+ Params = Struct.new(
17
18
  :all,
18
19
  :required,
19
20
  :optional,
20
21
  :rest,
21
22
  keyword_init: true
22
- )
23
-
23
+ ) do
24
24
  def initialize(**params)
25
25
  super
26
26
  self.all ||= []
@@ -1,13 +1,12 @@
1
1
  module Mocktail
2
- class Stubbing < Struct.new(
2
+ Stubbing = Struct.new(
3
3
  :demonstration,
4
4
  :demo_config,
5
5
  :satisfaction_count,
6
6
  :recording,
7
7
  :effect,
8
8
  keyword_init: true
9
- )
10
-
9
+ ) do
11
10
  def initialize(**kwargs)
12
11
  super
13
12
  self.satisfaction_count ||= 0
@@ -1,5 +1,5 @@
1
1
  module Mocktail
2
- class TypeReplacement < Struct.new(
2
+ TypeReplacement = Struct.new(
3
3
  :type,
4
4
  :original_methods,
5
5
  :replacement_methods,
@@ -7,5 +7,4 @@ module Mocktail
7
7
  :replacement_new,
8
8
  keyword_init: true
9
9
  )
10
- end
11
10
  end
@@ -1,11 +1,11 @@
1
1
  module Mocktail
2
- class TypeReplacementData < Struct.new(
2
+ TypeReplacementData = Struct.new(
3
3
  :type,
4
4
  :replaced_method_names,
5
5
  :calls,
6
6
  :stubbings,
7
7
  keyword_init: true
8
- )
8
+ ) do
9
9
  def double
10
10
  type
11
11
  end
@@ -1,9 +1,8 @@
1
1
  module Mocktail
2
- class UnsatisfyingCall < Struct.new(
2
+ UnsatisfyingCall = Struct.new(
3
3
  :call,
4
4
  :other_stubbings,
5
5
  :backtrace,
6
6
  keyword_init: true
7
7
  )
8
- end
9
8
  end
@@ -1,3 +1,3 @@
1
1
  module Mocktail
2
- VERSION = "1.2.2"
2
+ VERSION = "1.2.3"
3
3
  end
data/mocktail.gemspec CHANGED
@@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.metadata["homepage_uri"] = spec.homepage
14
14
  spec.metadata["source_code_uri"] = spec.homepage
15
15
  spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
16
+ spec.metadata["rubygems_mfa_required"] = "true"
16
17
 
17
18
  # Specify which files should be added to the gem when it is released.
18
19
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mocktail
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-19 00:00:00.000000000 Z
11
+ date: 2023-08-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -109,6 +109,7 @@ metadata:
109
109
  homepage_uri: https://github.com/testdouble/mocktail
110
110
  source_code_uri: https://github.com/testdouble/mocktail
111
111
  changelog_uri: https://github.com/testdouble/mocktail/blob/main/CHANGELOG.md
112
+ rubygems_mfa_required: 'true'
112
113
  post_install_message:
113
114
  rdoc_options: []
114
115
  require_paths:
@@ -124,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
125
  - !ruby/object:Gem::Version
125
126
  version: '0'
126
127
  requirements: []
127
- rubygems_version: 3.3.20
128
+ rubygems_version: 3.4.6
128
129
  signing_key:
129
130
  specification_version: 4
130
131
  summary: Take your objects, and make them a double