From 403e2c2bf88a6963cc2802044bd72a378ccd4889 Mon Sep 17 00:00:00 2001 From: Micheal Angelo Date: Fri, 2 Jan 2026 19:57:30 +0530 Subject: [PATCH] Update Ruby sample apps to supported Ruby 3.2 Updated Gemfiles to use Ruby 3.2 in blank-ruby/function and layer-ruby/layer. No functional code changes. Bundle install and tests will be handled by maintainers/CI. --- sample-apps/blank-ruby/function/Gemfile | 2 ++ sample-apps/layer-ruby/layer/Gemfile | 1 + 2 files changed, 3 insertions(+) diff --git a/sample-apps/blank-ruby/function/Gemfile b/sample-apps/blank-ruby/function/Gemfile index bc5290be..eacb7019 100644 --- a/sample-apps/blank-ruby/function/Gemfile +++ b/sample-apps/blank-ruby/function/Gemfile @@ -1,4 +1,6 @@ # Gemfile +ruby '3.2' + source 'https://rubygems.org' gem 'aws-xray-sdk', '0.11.4' diff --git a/sample-apps/layer-ruby/layer/Gemfile b/sample-apps/layer-ruby/layer/Gemfile index 64ad6202..460db924 100644 --- a/sample-apps/layer-ruby/layer/Gemfile +++ b/sample-apps/layer-ruby/layer/Gemfile @@ -1,4 +1,5 @@ # frozen_string_literal: true +ruby '3.2' source "https://rubygems.org"