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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0786b99461164892b7ff976597820ffd9892f97b2f6aa11d2ada59e98b0b9856'
4
- data.tar.gz: 39b60eef74d5a4af000aa24798908557392d49ec2155593753b112047be4bea1
3
+ metadata.gz: 8544eeca330d5bad0b1a70c71a6faa5f6d9c499f4c7bf667f2263f47cdb50519
4
+ data.tar.gz: b3d0c1aab3fa5a94a516f73609865b12c900ae25b22de24851aa7b0a42f75e83
5
5
  SHA512:
6
- metadata.gz: 1c258c2fdeaa80ad702598b049af9c352821edb100f5e2506e107b93b79bc5b008d6aab28552b6640ea4e56b1f9b0ba3656d5ab911c8eda13482de6221f3583e
7
- data.tar.gz: bd842eb0300aea0fd82c41aff9c62a76be0576add12aeabfcfdd95c487d3407ed4aeeadb9fc7ff01d6febb5d45a36ef6b6fc4fc7bf135e380d621f98d8dc34da
6
+ metadata.gz: 67449938aae87b065f802edba73033947841d07201484c8462e6da463a349357f657e4f1b1dc0717ffa90cbef278d915cde52d737661e27cf1cfc6cbd27132cf
7
+ data.tar.gz: 0db12d0c7f182997729479db38a172ba11baf3eb7026d2d43817a35a18739064b69ffc224902bf57431e419ea64fc7e92b34b5c594a499c72b6a5ba63c13eefa
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [0.0.9]
2
+
3
+ * Move `#render_task` to `Assertions` module.
4
+
1
5
  ## [0.0.8]
2
6
 
3
7
  * Add `Core.def_steps` and `Core.def_tasks` to create test steps. This logic used to sit
@@ -1,6 +1,6 @@
1
1
  module Trailblazer
2
2
  module Core::Utils
3
- module Assertions
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: Assertions.method(:render_task))
59
+ Activity::Introspect::Render.(activity, inspect_task: method(:render_task))
60
60
  end
61
- end
62
61
 
63
- # Use this in {#Cct}.
64
- def self.render_task(proc)
65
- Activity::Introspect.render_task(proc)
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
@@ -1,7 +1,7 @@
1
1
  module Trailblazer
2
2
  module Core
3
3
  module Utils
4
- VERSION = "0.0.8"
4
+ VERSION = "0.0.9"
5
5
  end
6
6
  end
7
7
  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.8
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-07-10 00:00:00.000000000 Z
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