trailblazer-activity-dsl-linear 0.3.1 → 0.3.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e481aa5153de44b0da4d54cbfe4782ba8347dbb49032a7c1045c9e7e6cb1042a
|
|
4
|
+
data.tar.gz: b2d3a3aa554e024c0b21df9da96a9602ee95ab180413067f1b3051085777d5b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fb497050bd9724d6c7983ed6add78c1db935037420f298146cdf782846d3327dbd7f056b7356333a10873ba0a7fb1e5bfecff43e4108576696ef4724ab1d6284
|
|
7
|
+
data.tar.gz: 9228ce6fae917cf7fba140893d1909616c29d9741312e7319dd21e4d0aca575a5201b272eddd865aad6df2ba6624abb6dde64accef4c8fc31e14e002e9b0b7fe
|
data/CHANGES.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# 0.3.2
|
|
2
|
+
|
|
3
|
+
* Updrading `trailblazer-activity` version to utilise new `trailblazer-context` :drum:
|
|
4
|
+
|
|
1
5
|
# 0.3.1
|
|
2
6
|
|
|
3
7
|
* Fixes in circuit interface normalization when given task is a {Symbol}, consider additional {task} options (like {id}) and assign {task} symbol as an {id}.
|
|
@@ -68,10 +68,10 @@ module Trailblazer
|
|
|
68
68
|
end
|
|
69
69
|
|
|
70
70
|
def call((original_ctx, flow_options), **circuit_options)
|
|
71
|
-
Trailblazer::Context
|
|
71
|
+
Trailblazer::Context(
|
|
72
72
|
@filter.(original_ctx, **circuit_options),
|
|
73
73
|
{},
|
|
74
|
-
[
|
|
74
|
+
flow_options[:context_options]
|
|
75
75
|
)
|
|
76
76
|
end
|
|
77
77
|
end
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
end
|
|
20
20
|
spec.require_paths = ["lib"]
|
|
21
21
|
|
|
22
|
-
spec.add_dependency "trailblazer-activity", ">= 0.
|
|
22
|
+
spec.add_dependency "trailblazer-activity", ">= 0.11.2", "< 1.0.0"
|
|
23
23
|
|
|
24
24
|
spec.add_development_dependency "bundler"
|
|
25
25
|
spec.add_development_dependency "minitest", "~> 5.0"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: trailblazer-activity-dsl-linear
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Sutterer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-08-
|
|
11
|
+
date: 2020-08-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: trailblazer-activity
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.11.2
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 1.0.0
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.
|
|
29
|
+
version: 0.11.2
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 1.0.0
|