forked from artsy/eigen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
29 lines (22 loc) · 788 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
source 'https://rubygems.org'
ruby ">= 2.6.10"
gem 'fastlane'
# 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.3', '< 7.1.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)