robot_lab-ractor 0.2.7 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 724b9a5e40e0c804a098c77c82a840bbefc1f2aee3eff8e30d55028b4b855cca
4
- data.tar.gz: 72cd114832da0420413d8ab88615f76e70abff8518f47edca4e132845d5e9233
3
+ metadata.gz: 18c5395ad674a2e28bc7f8de111971c2091857e15f39b26fa8cfbac525c4062c
4
+ data.tar.gz: 351f987a54ab19f90684f177c887916b7aa34bca70539c985f2b75768ae1683e
5
5
  SHA512:
6
- metadata.gz: efc32b8b45b287b41229151b12e8e9f211b72098428444205fd1d92364fce9f951411d08650ea230e0830d616d09c35b061c4d1ccfedc710a9d4a1e02cb52fc9
7
- data.tar.gz: 51d69e8ad51cc08f7785a53f2cc201007575c0075d892207539eab9d9774ab90fc6b27f0cd6c77ef2653cbf118bcf087286b2339ccfad4f249d8d82bb982cff6
6
+ metadata.gz: 2b944c485e86fd49e268cf1a1f1a7dee1821640fe81c6af22af77ec81f2e82eb63bb9a307e005578c0e7475458ca13d95f97e21e440b6bcd78648ca9d387e9c9
7
+ data.tar.gz: 16e68dd71e3753c71e2b87f1852b31413a0355a956ea8c559121974182912ce70a9e7964cc1d7b5b3bc32bea561d9bf648e459728ca30f610995216b5f09bedb
data/.envrc CHANGED
@@ -1,3 +1,6 @@
1
+ # robot_lab_project/robot_lab-ractor/.envrc
2
+
1
3
  source_up
4
+
2
5
  export RR=`pwd`
3
6
  export BUNDLE_GEMFILE=Gemfile
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
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'bundler/gem_tasks'
4
3
  require 'rake/testtask'
5
4
 
6
5
  Rake::TestTask.new(:test) do |t|
@@ -4,6 +4,6 @@ module RobotLab
4
4
  # RactorPool (not Ractor) avoids shadowing Ruby's built-in Ractor class
5
5
  # for all code within the RobotLab namespace.
6
6
  module RactorPool
7
- VERSION = '0.2.7'
7
+ VERSION = '0.2.8'
8
8
  end
9
9
  end
@@ -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]
@@ -61,6 +61,7 @@ module RobotLab
61
61
 
62
62
  # Gracefully shut down the pool via poison-pill pattern.
63
63
  # @return [void]
64
+ # :reek:UncommunicativeVariableName -- single-char block param (w = worker) is accepted project convention.
64
65
  def shutdown
65
66
  return if @closed
66
67
 
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.7
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.19
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: []