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 +4 -4
- data/lib/flow/rspec/custom_matchers/have_on_state.rb +1 -1
- data/lib/flow/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3aa65a07abd427d892a364731e61b55d593581c024f8ed349b9c74bb388504c9
|
4
|
+
data.tar.gz: 734f0cf34ab56ef17588fbe8009e1816c6286e6bc0bb26f870c694abaac38ec4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
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.
|
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-
|
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.
|
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.
|