mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2025-12-23 22:18:36 -05:00
* Upgrade helper: package.json
* Upgrade helper: gems
* Upgrade helper: Android
* Update AppDelegate
* Fix error in compiling
* Update package-lock.json
* Update Podfile.lock
* Update package-lock.json
* Update Podfile.lock
* Remove no longer needed mock
* Comment out entire test and not only the expect call
* Most other unit tests use this render helper function that
wraps the component in the entire app.
* Mock react-native exports as esModule
* Update .flowconfig
* Update Gemfile
* Revert "Comment out entire test and not only the expect call"
This reverts commit 8785f81529.
28 lines
921 B
Ruby
28 lines
921 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"
|
|
|
|
# Ruby 3.4.0 has removed some libraries from the standard library.
|
|
gem "benchmark"
|
|
gem "bigdecimal"
|
|
gem "logger"
|
|
gem "mutex_m"
|
|
|
|
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"
|