trailblazer-activity 0.16.0 → 0.16.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: cf0052816c7f4a1ed202128395c3c8324a27b139bbfcb163314848eaf5132d2d
4
- data.tar.gz: 94f9951381191ce8f25816aa27228a17c27c7d271e246c94a8667f315ca2f885
3
+ metadata.gz: e4aface39f365f86ef2fdc9c271821747c47724ff939e3b2d9ff9c914e67fe42
4
+ data.tar.gz: 0b9ad9c43f7d1194d6d36be9a52b18f64ea2153eb08002c7ae6d90afca21c1a9
5
5
  SHA512:
6
- metadata.gz: 34b620b89186a2656671005b026f5f3f28151bcae374d058d047175553dd77b3a0c6c23557be84e03a297c9e7e02185b22ac09e4149ba843bed48db3261451a3
7
- data.tar.gz: 512ac5bdb8af2ef4948c70c2292910e4d406f600c4d5a178afdfc02f8b70497f8b15e86ee297e4199ac4f3716be509986a21a7de33346418b60ce22501ab8930
6
+ metadata.gz: f1327d35677ed3fcc721aaf12dd58c8f54f253303b1eb27a01dcf02446c10e1f63ef3004ca1cda4ec7146839029077072893b149c365d3d88e5eb9c7b5f471d2
7
+ data.tar.gz: 25caa1eece8642ed5d564a3f6acc958c0498f1aff016cc1b61a6cb54c3761f60f8a52ab23b6e0cbed00c714196b821091bd96edce17f6fcb0ab0d69667fd1154
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.16.1
2
+
3
+ * Allow overriding `Activity.call`.
4
+
1
5
  # 0.16.0
2
6
 
3
7
  * Remove `Activity#[]`. Please use `activity.to_h[:config]`.
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require "rake/testtask"
4
4
  Rake::TestTask.new(:test) do |t|
5
5
  t.libs << "test"
6
6
  t.libs << "lib"
7
- t.test_files = FileList["test/**/*_test.rb"] - FileList["test/docs/*"] + ["test/docs/activity_test.rb"]
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
8
  end
9
9
 
10
10
  task default: %i[test]
@@ -1,7 +1,7 @@
1
1
  module Trailblazer
2
2
  module Version
3
3
  module Activity
4
- VERSION = "0.16.0"
4
+ VERSION = "0.16.1"
5
5
  end
6
6
  end
7
7
  end
@@ -24,11 +24,15 @@ module Trailblazer
24
24
  %(#<Trailblazer::Activity:0x#{object_id}>)
25
25
  end
26
26
 
27
- # Canonical entry-point to invoke an {Activity} or Strategy such as {Activity::Railway}
28
- # with its taskWrap.
29
- def self.call(activity, ctx)
30
- TaskWrap.invoke(activity, [ctx, {}])
27
+ module Call
28
+ # Canonical entry-point to invoke an {Activity} or Strategy such as {Activity::Railway}
29
+ # with its taskWrap.
30
+ def call(activity, ctx)
31
+ TaskWrap.invoke(activity, [ctx, {}])
32
+ end
31
33
  end
34
+
35
+ extend Call # {Activity.call}.
32
36
  end # Activity
33
37
  end
34
38
 
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.16.0
4
+ version: 0.16.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: 2023-03-02 00:00:00.000000000 Z
11
+ date: 2023-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: trailblazer-context