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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab6af3f4814612317775e55c788597db4716219d663f553d0ea61541f4eed8d7
4
- data.tar.gz: 915ca22ddb9004718d6d1bbf1b49e3a2e9d3742f1d976ef36d0cc90450b913fc
3
+ metadata.gz: 248ae3da1e2aee9fbf59c40f96617df6ddf68f66de09a10ef109d78b1bf0567a
4
+ data.tar.gz: d12e94718fbe69c7e499fd47bcf289d4e660a97dc434dd9c7e0aa0fee980c108
5
5
  SHA512:
6
- metadata.gz: 135926b784a7cd31cf3e664836ff8a1ce38ee5d22d9d9e37d329e89089a6517a17a768b4b8141ba2e8a763cdfa110b4daee2a6a89112c07242b5ca77f45a33f0
7
- data.tar.gz: eca38645671834ae5d1044438707df31f43f6d7f0541e188e71a30e3916241af1d8aaa8dd21b9f4f6d9b254f284d14c0312f5b6eebe0d1fd9da09a55bc8f2456
6
+ metadata.gz: c6fbeee4da74670a760c83536b3324eac76170c8271ca3105d30ef803fcf1105a0cbebedc24f957c9974e34ae332d0a029e37fc2bacfa01527e886ffb0649ba1
7
+ data.tar.gz: 5207f6ee3639b1c12d5767b3ec24dd341c4fd96a9f781dc9dd29460096ca1f83ea26f409f4955f8372cfb9fda3957b5cef819b25a0ff9a326c72b71bae75240d
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.1.9
2
+
3
+ * Fix `:extensions` merging that would override `:input` and `:output` if the `:extensions` option was given via the DSL.
4
+
1
5
  # 0.1.8.
2
6
 
3
7
  * Fix `Linear` namespacing and `require`s.
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] ||= [] # FIXME
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]
@@ -3,7 +3,7 @@ module Trailblazer
3
3
  module Activity
4
4
  module DSL
5
5
  module Linear
6
- VERSION = "0.1.8"
6
+ VERSION = "0.1.9"
7
7
  end
8
8
  end
9
9
  end
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.8
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-08-15 00:00:00.000000000 Z
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