trailblazer-core-utils 0.0.8 → 0.0.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/CHANGELOG.md +4 -0
- data/lib/trailblazer/core/utils/assertions.rb +8 -6
- data/lib/trailblazer/core/utils/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8544eeca330d5bad0b1a70c71a6faa5f6d9c499f4c7bf667f2263f47cdb50519
|
4
|
+
data.tar.gz: b3d0c1aab3fa5a94a516f73609865b12c900ae25b22de24851aa7b0a42f75e83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67449938aae87b065f802edba73033947841d07201484c8462e6da463a349357f657e4f1b1dc0717ffa90cbef278d915cde52d737661e27cf1cfc6cbd27132cf
|
7
|
+
data.tar.gz: 0db12d0c7f182997729479db38a172ba11baf3eb7026d2d43817a35a18739064b69ffc224902bf57431e419ea64fc7e92b34b5c594a499c72b6a5ba63c13eefa
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
module Trailblazer
|
2
2
|
module Core::Utils
|
3
|
-
|
3
|
+
module Assertions
|
4
4
|
# `:seq` is always passed into ctx.
|
5
5
|
# @param :seq String What the {:seq} variable in the result ctx looks like. (expected seq)
|
6
6
|
# @param :expected_ctx_variables Variables that are added during the call by the asserted activity.
|
@@ -56,13 +56,15 @@ module Trailblazer
|
|
56
56
|
end
|
57
57
|
|
58
58
|
def Cct(activity)
|
59
|
-
Activity::Introspect::Render.(activity, inspect_task:
|
59
|
+
Activity::Introspect::Render.(activity, inspect_task: method(:render_task))
|
60
60
|
end
|
61
|
-
end
|
62
61
|
|
63
|
-
|
64
|
-
|
65
|
-
|
62
|
+
module_function
|
63
|
+
# Use this in {#Cct}.
|
64
|
+
def render_task(proc)
|
65
|
+
Activity::Introspect.render_task(proc)
|
66
|
+
end
|
66
67
|
end
|
68
|
+
|
67
69
|
end
|
68
70
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trailblazer-core-utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Sutterer
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: trailblazer-activity-dsl-linear
|