claude_swarm 0.3.2 → 0.3.3

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: 7b271585c56ae3f85e921a7558bd46d82430ee60383fc999b6e89f27ffcdd0b0
4
- data.tar.gz: 6b84e34b59412155d1a43cc00e8c41fe989287da7b98e2b12f8e1576f2002f87
3
+ metadata.gz: df4f13365305ca607131b9976630fd7caebaa4c2f69f2fefc59e9d036aee2033
4
+ data.tar.gz: b1bf9cc4b672843216ec3107654a6e17d84a69fde87fe54d9846bfb4dca0f7ec
5
5
  SHA512:
6
- metadata.gz: 98c7d8d77ea9fb5256556fe7e73f83194cca4893084cab5b9b1826c6426052afd12b86f4fabad28e8e35d36a0114f6f7d6e1cd25fd4f02fb40f4450a5f048940
7
- data.tar.gz: 33c134e8f553510dfee481b935c67eae21e196c4bc8bc494657042e69e32b91238169feaf0b138a632abda219fef791ad224294da958732c135b04a9fc7a1cf0
6
+ metadata.gz: bf0623fdf1d7ff7f551c32d87ba434d0073d0ffcb5f3254ea42d6b9e6048d350823d7bad2294929d014892728866f59117c9b58ebd5a7b0b1c2f358d8942387e
7
+ data.tar.gz: 7e575dd61d59a8c2c1e04790ba3024136797373ad585612aee3b365a0d47f22bd3732119ea73ae01ddd67b75900ebe090117993f58af1520deecf4bc57907ca1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.3.3]
2
+
3
+ ### Fixed
4
+ - **Bundler constant error**: Fixed `uninitialized constant ClaudeSwarm::Orchestrator::Bundler` error by adding missing `require "bundler"` statement
5
+ - Issue occurred when using `Bundler.with_unbundled_env` without properly requiring the bundler gem
6
+ - Resolves issue #83 reported by users upgrading to version 0.3.2
7
+
1
8
  ## [0.3.2]
2
9
 
3
10
  ### Added
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Claude Swarm
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/claude_swarm.svg?cache_bust=0.3.0)](https://badge.fury.io/rb/claude_swarm)
3
+ [![Gem Version](https://badge.fury.io/rb/claude_swarm.svg?cache_bust1=0.3.2)](https://badge.fury.io/rb/claude_swarm)
4
4
  [![CI](https://github.com/parruda/claude-swarm/actions/workflows/ci.yml/badge.svg)](https://github.com/parruda/claude-swarm/actions/workflows/ci.yml)
5
5
 
6
6
  Claude Swarm orchestrates multiple Claude Code instances as a collaborative AI development team. It enables running AI agents with specialized roles, tools, and directory contexts, communicating via MCP (Model Context Protocol) in a tree-like hierarchy. Define your swarm topology in simple YAML and let Claude instances delegate tasks through connected instances. Perfect for complex projects requiring specialized AI agents for frontend, backend, testing, DevOps, or research tasks.
@@ -42,7 +42,7 @@ gem install claude_swarm
42
42
  Or add it to your Gemfile:
43
43
 
44
44
  ```ruby
45
- gem 'claude_swarm'
45
+ gem 'claude_swarm', "~> 0.3.2"
46
46
  ```
47
47
 
48
48
  Then run:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ClaudeSwarm
4
- VERSION = "0.3.2"
4
+ VERSION = "0.3.3"
5
5
  end
data/lib/claude_swarm.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # Standard library dependencies
4
+ require "bundler"
4
5
  require "digest"
5
6
  require "English"
6
7
  require "erb"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: claude_swarm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paulo Arruda