-
Notifications
You must be signed in to change notification settings - Fork 581
/
Gemfile
31 lines (24 loc) · 902 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
source 'https://rubygems.org'
ruby ">= 2.6.10"
# TODO: remove this once we the issue with the rollout is resolved
# https://github.com/fastlane/fastlane/issues/28995
gem 'fastlane', '2.225.0'
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
gem 'xcodeproj', '< 1.26.0'
# So we know if we need to run `pod install`
gem 'cocoapods-check'
gem 'cocoapods-patch', '~> 1.3.0'
gem 'down'
gem 'dotenv'
gem 'json'
group :development do
gem 'lowdown' # For handling notifications + certs
end
group :test do
gem 'xcode-install' # To ensure we have the right SDK installed for running tests
gem 'xcpretty' # Makes CI readable
end
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)