flow 0.10.7.1 → 0.10.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b4b09f37dfcc377db4e42324939c1186fbd03208d5367c5fda86ebcb7fb222cd
4
- data.tar.gz: f4f6807de901c271b41ee01f472af93c1f3a9faaf85100716d1c90566ad0c50a
3
+ metadata.gz: 3aa65a07abd427d892a364731e61b55d593581c024f8ed349b9c74bb388504c9
4
+ data.tar.gz: 734f0cf34ab56ef17588fbe8009e1816c6286e6bc0bb26f870c694abaac38ec4
5
5
  SHA512:
6
- metadata.gz: 2f16953afacf89c36edd639732b0f9920627f849d57e8a8e2cf230fce6b0b0d1aaacd1a454c284df4b8d0507e551cf2119726e769034f4325d11b2f86c370d08
7
- data.tar.gz: ef6883b589e23ab886982cc0b69a63fae39d2d90bd24cdb09728666f7568ab9d3f9ef6335e16bdb5d33eb4b8f6074c150e9ab352958dd0851003905a920957f6
6
+ metadata.gz: 44a2496f0f014401ee406a9830726420f35d355595d456538b7caf2e2d1da11eef2e9834a072f62039cfb45e9599e5735bf63e82ef8606f27a210c6a8830d84a
7
+ data.tar.gz: 1785d326c031e25cc93645158c339ca527228e5abfd7ab9310300ea61971d571e908b031fa15729863798fb4999382aca3681a80bb2faaefdb5277fe1d824530
@@ -45,7 +45,7 @@ module Flow
45
45
  def matches?(object)
46
46
  @state_expectations.all? do |key, value|
47
47
  # If state is actually a StateProxy, we to access the state directly with _state
48
- if object.state.respond_to?(:_state)
48
+ if object.state.respond_to?(:_state, true)
49
49
  expect(object.state.__send__(:_state).public_send(key)).to match value
50
50
  else
51
51
  expect(object.state.public_send(key)).to match value
data/lib/flow/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Flow
4
- VERSION = "0.10.7.1"
4
+ VERSION = "0.10.7.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.7.1
4
+ version: 0.10.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Garside
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2021-04-13 00:00:00.000000000 Z
15
+ date: 2021-05-11 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: activemodel
@@ -341,7 +341,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
341
341
  - !ruby/object:Gem::Version
342
342
  version: '0'
343
343
  requirements: []
344
- rubygems_version: 3.1.4
344
+ rubygems_version: 3.2.17
345
345
  signing_key:
346
346
  specification_version: 4
347
347
  summary: Write modular and reusable business logic that's understandable and maintainable.