2021-01-31 03:09:35 +01:00
|
|
|
source "https://rubygems.org"
|
|
|
|
|
2024-02-05 01:14:54 +01:00
|
|
|
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
|
|
|
|
ruby ">= 2.6.10"
|
|
|
|
|
|
|
|
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
|
|
|
|
# bound in the template on Cocoapods with next React Native release.
|
|
|
|
gem 'cocoapods', '>= 1.13', '< 1.15'
|
|
|
|
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0'
|
|
|
|
|
2021-02-02 22:50:38 +01:00
|
|
|
gem "fastlane"
|
|
|
|
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
|
|
|
|
eval_gemfile(plugins_path) if File.exist?(plugins_path)
|