2024-06-15 16:50:19 -04:00
|
|
|
source "https://rubygems.org"
|
2022-02-11 06:47:06 -05:00
|
|
|
|
|
|
|
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
|
2024-06-16 10:30:19 -04:00
|
|
|
ruby "3.1.6"
|
2025-01-05 21:11:11 +00:00
|
|
|
gem 'rubyzip', '2.4.1'
|
2025-03-02 01:49:30 -04:00
|
|
|
gem 'cocoapods', '~> 1.14.3'
|
2024-08-29 13:55:53 -04:00
|
|
|
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
|
2025-03-02 12:20:42 -04:00
|
|
|
gem "fastlane", "~> 2.226.0"
|
2025-01-24 20:19:37 -04:00
|
|
|
gem 'xcodeproj', '< 1.26.0'
|
2025-02-12 14:03:15 -04:00
|
|
|
gem 'concurrent-ruby', '< 1.3.4'
|
2025-03-02 12:20:42 -04:00
|
|
|
|
|
|
|
# Required for App Store Connect API
|
|
|
|
gem "jwt"
|
|
|
|
|
2024-09-01 15:42:03 -04:00
|
|
|
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
|
|
|
|
eval_gemfile(plugins_path) if File.exist?(plugins_path)
|