robot_lab-ractor 0.2.6 → 0.2.8
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/.envrc +3 -0
- data/CHANGELOG.md +4 -0
- data/Rakefile +0 -1
- data/lib/robot_lab/ractor/version.rb +1 -1
- data/lib/robot_lab/ractor_boundary.rb +1 -0
- data/lib/robot_lab/ractor_network_scheduler.rb +2 -0
- data/lib/robot_lab/ractor_worker_pool.rb +1 -0
- 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: 18c5395ad674a2e28bc7f8de111971c2091857e15f39b26fa8cfbac525c4062c
|
|
4
|
+
data.tar.gz: 351f987a54ab19f90684f177c887916b7aa34bca70539c985f2b75768ae1683e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b944c485e86fd49e268cf1a1f1a7dee1821640fe81c6af22af77ec81f2e82eb63bb9a307e005578c0e7475458ca13d95f97e21e440b6bcd78648ca9d387e9c9
|
|
7
|
+
data.tar.gz: 16e68dd71e3753c71e2b87f1852b31413a0355a956ea8c559121974182912ce70a9e7964cc1d7b5b3bc32bea561d9bf648e459728ca30f610995216b5f09bedb
|
data/.envrc
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.2.8] - 2026-09-09
|
|
4
|
+
|
|
5
|
+
Released in lockstep with `robot_lab` core v0.2.8: this gem now resolves the released core gem from RubyGems instead of the local sibling checkout (local-path development remains available via `BUNDLE_GEMFILE=Gemfile.local`). Also in this release: 5 reek false positives annotated inline, reek added to the development bundle, and gem lifecycle tasks moved to asgard.
|
|
6
|
+
|
|
3
7
|
### Added
|
|
4
8
|
- `.loki` Asgard task file: `test`, `rubocop`, `rubocop_fix`, `flog`, `flay`, `quality`, `build`, `install`, `release`, and `console` tasks via the Asgard task runner
|
|
5
9
|
- `flay_check` Rake task: structural code duplication gate (mass threshold 50); integrated into the `quality` Rake task
|
data/Rakefile
CHANGED
|
@@ -16,6 +16,7 @@ module RobotLab
|
|
|
16
16
|
# @param obj [Object] the value to freeze
|
|
17
17
|
# @return [Object] a frozen, Ractor-shareable copy
|
|
18
18
|
# @raise [RactorBoundaryError] if the value cannot be made shareable
|
|
19
|
+
# :reek:TooManyStatements -- recursive case dispatch per container type plus dup/error fallback; splitting obscures the recursion.
|
|
19
20
|
def self.freeze_deep(obj)
|
|
20
21
|
return obj if Ractor.shareable?(obj)
|
|
21
22
|
|
|
@@ -63,6 +63,7 @@ module RobotLab
|
|
|
63
63
|
end
|
|
64
64
|
|
|
65
65
|
# Gracefully shut down worker Ractors.
|
|
66
|
+
# :reek:UncommunicativeVariableName -- single-char block param (w = worker) is accepted project convention.
|
|
66
67
|
def shutdown
|
|
67
68
|
return if @closed
|
|
68
69
|
|
|
@@ -136,6 +137,7 @@ module RobotLab
|
|
|
136
137
|
end
|
|
137
138
|
end
|
|
138
139
|
|
|
140
|
+
# :reek:FeatureEnvy :reek:NestedIterators -- readiness predicate over each entry's depends_on list; the inner all? defines "ready".
|
|
139
141
|
def partition_ready(remaining, completed)
|
|
140
142
|
remaining.partition do |entry|
|
|
141
143
|
deps = entry[:depends_on]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: robot_lab-ractor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dewayne VanHoozer
|
|
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
112
|
version: '0'
|
|
113
113
|
requirements: []
|
|
114
|
-
rubygems_version: 4.0.
|
|
114
|
+
rubygems_version: 4.0.20
|
|
115
115
|
specification_version: 4
|
|
116
116
|
summary: Ractor-based parallel tool execution for RobotLab agents
|
|
117
117
|
test_files: []
|