From 9df171dff60c79b7711c12564272ba317a4f4cc3 Mon Sep 17 00:00:00 2001 From: Ribamar Santos Date: Sun, 12 Oct 2025 12:11:43 -0600 Subject: [PATCH 1/2] updating gemfile xcodeproj and cocoapods version as breaking change was fixed --- template/Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/Gemfile b/template/Gemfile index 6a4c5f1..ce67733 100644 --- a/template/Gemfile +++ b/template/Gemfile @@ -4,9 +4,9 @@ source 'https://rubygems.org' ruby ">= 2.6.10" # Exclude problematic versions of cocoapods and activesupport that causes build failures. -gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1' +gem 'cocoapods', '1.16.2' gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0' -gem 'xcodeproj', '< 1.26.0' +gem 'xcodeproj', '1.27.0' gem 'concurrent-ruby', '< 1.3.4' # Ruby 3.4.0 has removed some libraries from the standard library. From 1a5e4432968d1480e8a0108ccdaa7b6e4976d56c Mon Sep 17 00:00:00 2001 From: Ribamar Santos Date: Mon, 13 Oct 2025 09:30:15 -0600 Subject: [PATCH 2/2] removing restriction for both verions --- template/Gemfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/Gemfile b/template/Gemfile index ce67733..a542c69 100644 --- a/template/Gemfile +++ b/template/Gemfile @@ -4,9 +4,9 @@ source 'https://rubygems.org' ruby ">= 2.6.10" # Exclude problematic versions of cocoapods and activesupport that causes build failures. -gem 'cocoapods', '1.16.2' +gem 'cocoapods', '>=1.16.2' gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0' -gem 'xcodeproj', '1.27.0' +gem 'xcodeproj', '>=1.27.0' gem 'concurrent-ruby', '< 1.3.4' # Ruby 3.4.0 has removed some libraries from the standard library.