trailblazer-activity 0.9.0 → 0.9.1

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: 5f50cd0494bec7054e6dda24aaf8d2a2aff9575aa4c6a0e5a4ee2a526ba01eb3
4
- data.tar.gz: 0ed8764ab5f77fceeae9c097c151514e797146f755672434ea38dfcf521c95ef
3
+ metadata.gz: 943560a813f46719e16777daa7f1b58f93a5871838a6e1593a913ecc5a7475a5
4
+ data.tar.gz: 0a4e4286edcb7319f0002d82388dbfa9c7005ed76d214884af91e8290ff86fe3
5
5
  SHA512:
6
- metadata.gz: 40da5dd6bd2ff3379609261e4270e4071cee4cac78d710300d043e11b8780b90dff4bd898fb8b0972410d0d19f92967c90e1141931e96737e35bbe510a925092
7
- data.tar.gz: '00863321ebfb71d0b2799e88c0c7b9af9bc7781b44887bbbc5566720633f5c650de8992332eac6b75cf25438d9d6204da89c7d1d118d166b1a30da41da1b1aa2'
6
+ metadata.gz: f754c43ff0f0a815e52b3bb5f80f4962f3c3566262b6f731aed3a1b1237bc73a16824ad68dd795ca5f7f01349030907bba302fb56863de5a2f5d57e0d7b6924f
7
+ data.tar.gz: 103a79e48cf54ca69767ae4370cec9810d6d5ca5a2352db28896f6ffd232ca98f426ff87d3b6d748173af97589c211f14347ae59779d0f9e834e0ccc7f6d7852
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.9.1
2
+
3
+ Use `context-0.9.1`.
4
+
1
5
  # 0.9.0
2
6
 
3
7
  * Change API of `Input`/`Output` filters. Instead of calling them with `original_ctx, circuit_options` they're now called with the complete (original!) circuit interface. This simplifies calling and provides all circuit arguments to the filter which can then filter-out what is not needed.
data/Gemfile CHANGED
@@ -8,6 +8,6 @@ gem "minitest-line"
8
8
 
9
9
  gem "rubocop", require: false
10
10
 
11
- gem "trailblazer-context", path: "../trailblazer-context"
11
+ # gem "trailblazer-context", path: "../trailblazer-context"
12
12
  # gem "trailblazer-developer", path: "../trailblazer-developer"
13
13
  # gem "trailblazer-developer", github: "trailblazer/trailblazer-developer", branch: "exception-tracing"
@@ -13,7 +13,7 @@ class Trailblazer::Activity
13
13
 
14
14
  ctx = original_ctx.merge(defaulted_options)
15
15
 
16
- Trailblazer::Context.for(ctx, [original_ctx, {}], {})
16
+ Trailblazer::Context.for_circuit(ctx, {}, [original_ctx, flow_options], circuit_options) # TODO: test if Inject and :context_class work.
17
17
  end
18
18
 
19
19
  output = ->(new_ctx, (original_ctx, flow_options), circuit_options) { # FIXME: use Unscope
@@ -1,7 +1,7 @@
1
1
  module Trailblazer
2
2
  module Version
3
3
  module Activity
4
- VERSION = "0.9.0"
4
+ VERSION = "0.9.1"
5
5
  end
6
6
  end
7
7
  end
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  end
18
18
  spec.require_paths = ["lib"]
19
19
 
20
- spec.add_dependency "trailblazer-context", ">= 0.1.4"
20
+ spec.add_dependency "trailblazer-context", ">= 0.2.0", "< 0.3.0"
21
21
 
22
22
  spec.add_development_dependency "bundler"
23
23
  spec.add_development_dependency "minitest", "~> 5.0"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trailblazer-activity
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
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-09-18 00:00:00.000000000 Z
11
+ date: 2019-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: trailblazer-context
@@ -16,14 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.4
19
+ version: 0.2.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 0.3.0
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - ">="
25
28
  - !ruby/object:Gem::Version
26
- version: 0.1.4
29
+ version: 0.2.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 0.3.0
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: bundler
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -139,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
145
  version: '0'
140
146
  requirements: []
141
147
  rubyforge_project:
142
- rubygems_version: 2.7.3
148
+ rubygems_version: 2.7.6
143
149
  signing_key:
144
150
  specification_version: 4
145
151
  summary: Runtime code for Trailblazer activities.