Files
iNaturalistReactNative/Gemfile
Johannes Klein aa5618bf09 Update ruby to v3 (and bundler to 2.7.1) (#3046)
* Update .ruby-version

* Update .ruby-version

* Update Podfile.lock

* Do "bundle update --bundler"

* Do "bundle update"

* Patch fastlane for uby 3.4

* Downgrade to ruby 3.3

* Revert "Downgrade to ruby 3.3"

This reverts commit 488fd163ec.

* Add generic platform ruby

* Do "bundle update --ruby"

* Update Gemfile
2025-08-09 15:15:50 +02:00

22 lines
793 B
Ruby

# frozen_string_literal: true
source "https://rubygems.org"
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
gem "activesupport", ">= 6.1.7.5", "!= 7.1.0"
gem "cocoapods", ">= 1.13", "!= 1.15.0", "!= 1.15.1"
gem "concurrent-ruby", "< 1.3.4"
gem "xcodeproj", "< 1.26.0"
gem "fastlane"
# Temporary workaround for https://github.com/fastlane/fastlane/issues/26682
gem "fastlane-sirp", git: "https://github.com/appbot/fastlane-sirp.git", ref: "sysrandom_fix"
# Currently fastlane support for ruby 3.4.x is not finished, so we need to add
# this here because fastlane does not specifically add this dependency.
gem "abbrev"
gem "nokogiri"
gem "rubocop"