feat(ios) introduce gemfile to make builds more reproducible

With it we can control what Ruby version, cocoapods version and fastlane
version is being used.
This commit is contained in:
Saúl Ibarra Corretgé
2025-02-17 14:55:53 +01:00
committed by Saúl Ibarra Corretgé
parent 1b1e7d9bce
commit 74efbd7a61
4 changed files with 414 additions and 84 deletions

11
Gemfile Normal file
View File

@@ -0,0 +1,11 @@
source "https://rubygems.org"
ruby ">= 3.4.0"
gem "cocoapods", "~> 1.16"
# (Optional) Fastlane for automation
gem "fastlane"
# (Optional) Bundler itself to ensure consistency
gem "bundler"