From d7eb290aa8080907abd03a0c3f5796703d0c992c Mon Sep 17 00:00:00 2001 From: Katherine P Brennan Date: Tue, 16 Jan 2024 10:36:53 +0000 Subject: [PATCH] Updated cocoapods to version 1.14 (#27) * updated cocoapods to version 1.14 * change activesupport version --- Gemfile | 1 + Gemfile.lock | 35 +++++++++++++++-------------- cocoapods-mangle.gemspec | 2 +- lib/cocoapods_mangle/gem_version.rb | 2 +- 4 files changed, 21 insertions(+), 19 deletions(-) diff --git a/Gemfile b/Gemfile index 96d7c61..9249ccd 100644 --- a/Gemfile +++ b/Gemfile @@ -7,4 +7,5 @@ group :development do gem 'pry' gem 'pry-remote' gem 'rspec_junit_formatter' + gem 'activesupport', '7.0.8' end diff --git a/Gemfile.lock b/Gemfile.lock index a89ea38..1b9f1ea 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,32 +1,32 @@ PATH remote: . specs: - cocoapods-mangle (1.1.3) - cocoapods (~> 1.12.1) + cocoapods-mangle (1.1.4) + cocoapods (~> 1.14) GEM remote: https://rubygems.org/ specs: CFPropertyList (3.0.6) rexml - activesupport (7.0.6) + activesupport (7.0.8) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) - addressable (2.8.4) + addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) algoliasearch (1.27.5) httpclient (~> 2.8, >= 2.8.3) json (>= 1.5.1) atomos (0.1.3) claide (1.1.0) - cocoapods (1.12.1) + cocoapods (1.14.3) addressable (~> 2.8) claide (>= 1.0.2, < 2.0) - cocoapods-core (= 1.12.1) + cocoapods-core (= 1.14.3) cocoapods-deintegrate (>= 1.0.3, < 2.0) - cocoapods-downloader (>= 1.6.0, < 2.0) + cocoapods-downloader (>= 2.1, < 3.0) cocoapods-plugins (>= 1.0.0, < 2.0) cocoapods-search (>= 1.0.0, < 2.0) cocoapods-trunk (>= 1.6.0, < 2.0) @@ -38,8 +38,8 @@ GEM molinillo (~> 0.8.0) nap (~> 1.0) ruby-macho (>= 2.3.0, < 3.0) - xcodeproj (>= 1.21.0, < 2.0) - cocoapods-core (1.12.1) + xcodeproj (>= 1.23.0, < 2.0) + cocoapods-core (1.14.3) activesupport (>= 5.0, < 8) addressable (~> 2.8) algoliasearch (~> 1.0) @@ -50,7 +50,7 @@ GEM public_suffix (~> 4.0) typhoeus (~> 1.0) cocoapods-deintegrate (1.0.5) - cocoapods-downloader (1.6.3) + cocoapods-downloader (2.1) cocoapods-plugins (1.0.0) nap cocoapods-search (1.0.1) @@ -60,21 +60,21 @@ GEM cocoapods-try (1.2.0) coderay (1.1.3) colored2 (3.1.2) - concurrent-ruby (1.2.2) + concurrent-ruby (1.2.3) diff-lcs (1.4.4) escape (0.0.4) ethon (0.16.0) ffi (>= 1.15.0) - ffi (1.15.5) + ffi (1.16.3) fourflusher (2.3.1) fuzzy_match (2.0.4) gh_inspector (1.1.3) httpclient (2.8.3) i18n (1.14.1) concurrent-ruby (~> 1.0) - json (2.6.3) + json (2.7.1) method_source (1.0.0) - minitest (5.18.1) + minitest (5.21.1) molinillo (0.8.0) nanaimo (0.3.0) nap (1.1.0) @@ -86,7 +86,7 @@ GEM pry (~> 0.9) slop (~> 3.0) public_suffix (4.0.7) - rexml (3.2.5) + rexml (3.2.6) rspec (3.9.0) rspec-core (~> 3.9.0) rspec-expectations (~> 3.9.0) @@ -104,11 +104,11 @@ GEM rspec-core (>= 2, < 4, != 2.12.0) ruby-macho (2.5.1) slop (3.6.0) - typhoeus (1.4.0) + typhoeus (1.4.1) ethon (>= 0.9.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - xcodeproj (1.22.0) + xcodeproj (1.23.0) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) @@ -120,6 +120,7 @@ PLATFORMS ruby DEPENDENCIES + activesupport (= 7.0.8) cocoapods-mangle! pry pry-remote diff --git a/cocoapods-mangle.gemspec b/cocoapods-mangle.gemspec index 64d65cb..5d62232 100644 --- a/cocoapods-mangle.gemspec +++ b/cocoapods-mangle.gemspec @@ -17,5 +17,5 @@ Gem::Specification.new do |spec| spec.test_files = Dir['spec/**/*.rb'] spec.extra_rdoc_files = ['README.md', 'CHANGELOG.md'] spec.require_paths = ['lib'] - spec.add_dependency 'cocoapods', '~> 1.12.1' + spec.add_dependency 'cocoapods', '~> 1.14' end diff --git a/lib/cocoapods_mangle/gem_version.rb b/lib/cocoapods_mangle/gem_version.rb index 45a31f3..ec5e267 100644 --- a/lib/cocoapods_mangle/gem_version.rb +++ b/lib/cocoapods_mangle/gem_version.rb @@ -1,4 +1,4 @@ module CocoapodsMangle NAME = 'cocoapods-mangle' - VERSION = '1.1.3' + VERSION = '1.1.4' end