forked from artsy/eigen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
26 lines (21 loc) · 747 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
source 'https://rubygems.org'
gem 'fastlane'
gem 'cocoapods', '~> 1.7.2'
# So we know if we need to run `pod install`
gem 'cocoapods-check'
gem 'psych' # So our Podfile.lock is consistent
gem 'down'
gem 'dotenv'
gem 'json'
group :development do
gem 'lowdown' # For handling notifications + certs
end
group :test do
gem 'danger' # Stop saying 'you forgot to...', used only on Circle CI
gem 'xcode-install' # To ensure we have the right SDK installed for running tests
gem 'nokogiri', '1.11.1' # For CVE-2019-5477
gem 'second_curtain' # to upload snapshot fails
gem 'xcpretty' # Makes CI readable
end
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)