From 0c048a92362c9b7cfc40a8ef9e86700fcd5b2564 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sat, 8 Aug 2026 05:04:12 +0900 Subject: [PATCH] Update Ruby MCP client example Follow-up to #121. This PR removes the `base64` dependency from the Gemfile, as it became a runtime dependency of Claude SDK for Ruby v1.60.0+. https://github.com/anthropics/anthropic-sdk-ruby/pull/161#issuecomment-5221400980 --- mcp-client-ruby/Gemfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mcp-client-ruby/Gemfile b/mcp-client-ruby/Gemfile index d9f3d541..dfb9b637 100644 --- a/mcp-client-ruby/Gemfile +++ b/mcp-client-ruby/Gemfile @@ -2,7 +2,6 @@ source "https://rubygems.org" -gem "anthropic" -gem "base64" +gem "anthropic", '>= 1.60.0' gem "dotenv" gem "mcp", '>= 0.15.0'