trailblazer-activity-dsl-linear 0.1.8 → 0.1.9
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/CHANGES.md +4 -0
- data/LICENSE +9 -0
- data/lib/trailblazer/activity/dsl/linear/normalizer.rb +1 -1
- data/lib/trailblazer/activity/dsl/linear/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 248ae3da1e2aee9fbf59c40f96617df6ddf68f66de09a10ef109d78b1bf0567a
|
4
|
+
data.tar.gz: d12e94718fbe69c7e499fd47bcf289d4e660a97dc434dd9c7e0aa0fee980c108
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6fbeee4da74670a760c83536b3324eac76170c8271ca3105d30ef803fcf1105a0cbebedc24f957c9974e34ae332d0a029e37fc2bacfa01527e886ffb0649ba1
|
7
|
+
data.tar.gz: 5207f6ee3639b1c12d5767b3ec24dd341c4fd96a9f781dc9dd29460096ca1f83ea26f409f4955f8372cfb9fda3957b5cef819b25a0ff9a326c72b71bae75240d
|
data/CHANGES.md
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
Copyright (c) 2018 Trailblazer GmbH
|
2
|
+
|
3
|
+
Trailblazer is an Open Source project licensed under the terms of
|
4
|
+
the LGPLv3 license. Please see <http://www.gnu.org/licenses/lgpl-3.0.html>
|
5
|
+
for license text.
|
6
|
+
|
7
|
+
Trailblazer PRO has a commercial-friendly license allowing private forks
|
8
|
+
and modifications of Trailblazer. Please see http://trailblazer.to/pro for
|
9
|
+
more detail.
|
@@ -213,7 +213,7 @@ module Trailblazer
|
|
213
213
|
return Trailblazer::Activity::Right, [ctx, flow_options] if config.size == 0 # no :input/:output passed.
|
214
214
|
|
215
215
|
new_ctx = {}
|
216
|
-
new_ctx[:extensions]
|
216
|
+
new_ctx[:extensions] = ctx[:extensions] || [] # merge DSL extensions with I/O.
|
217
217
|
new_ctx[:extensions] += [Linear.VariableMapping(**config)]
|
218
218
|
|
219
219
|
return Trailblazer::Activity::Right, [ctx.merge(new_ctx), flow_options]
|
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.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Sutterer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: trailblazer-activity
|
@@ -100,6 +100,7 @@ files:
|
|
100
100
|
- CHANGES.md
|
101
101
|
- DSL_IDEAS
|
102
102
|
- Gemfile
|
103
|
+
- LICENSE
|
103
104
|
- README.md
|
104
105
|
- Rakefile
|
105
106
|
- lib/trailblazer-activity-dsl-linear.rb
|