Skip to content

Commit 400db24

Browse files
TonsOfFunclaude
andcommitted
chore: Configure Ruby 4.0.2 and update dependencies
- Add mise.toml for Ruby 4.0.2 - Update gemspec to support Ruby 4.x (>= 4.0.0, < 5.0) - Update Gemfile.lock for Ruby 4.0.2 šŸ¤– Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 6c4ad5d commit 400db24

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

ā€ŽGemfile.lockā€Ž

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ GEM
1919
debug (1.11.1)
2020
irb (~> 1.10)
2121
reline (>= 0.3.8)
22+
drb (2.2.3)
2223
erb (5.0.2)
2324
event_stream_parser (1.0.0)
2425
faraday (2.14.0)
@@ -42,7 +43,9 @@ GEM
4243
lint_roller (1.1.0)
4344
logger (1.7.0)
4445
marcel (1.1.0)
45-
minitest (5.25.5)
46+
minitest (6.0.5)
47+
drb (~> 2.0)
48+
prism (~> 1.5)
4649
multipart-post (2.4.1)
4750
net-http (0.9.1)
4851
uri (>= 0.11.1)
@@ -53,7 +56,7 @@ GEM
5356
pp (0.6.2)
5457
prettyprint
5558
prettyprint (0.2.0)
56-
prism (1.4.0)
59+
prism (1.9.0)
5760
psych (5.2.6)
5861
date
5962
stringio
@@ -101,7 +104,7 @@ GEM
101104
stringio (3.1.7)
102105
unicode-display_width (3.1.5)
103106
unicode-emoji (~> 4.0, >= 4.0.4)
104-
unicode-emoji (4.0.4)
107+
unicode-emoji (4.2.0)
105108
uri (1.1.1)
106109
vcr (6.4.0)
107110
webmock (3.26.1)

ā€ŽREADME.mdā€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ Ragents is designed to complement Active Agent - use Ragents for complex multi-a
301301

302302
## Requirements
303303

304-
- Ruby >= 4.0.0 (required for Ractor improvements including local GC)
304+
- Ruby 4.0+ (4.1 recommended for latest Ractor improvements)
305305
- ruby_llm gem (automatically installed)
306306

307307
## Contributing

ā€Žmise.tomlā€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tools]
2+
ruby = "4.0.2"

ā€Žragents.gemspecā€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
1616
spec.homepage = "https://activeagents.ai"
1717
spec.license = "MIT"
1818

19-
spec.required_ruby_version = ">= 4.0.0" # Requires Ruby 4.0+ for Ractor improvements
19+
spec.required_ruby_version = ">= 4.0.0", "< 5.0" # Ruby 4.x for Ractor improvements
2020

2121
spec.metadata = {
2222
"bug_tracker_uri" => "https://github.com/activeagents/ragents/issues",

0 commit comments

Comments
Ā (0)
⚔