Files
iOS/Gemfile
Zac West cea0b16936 Update dependencies (#1883)
- Updates several dependencies
- Removes Lokalise -- if we can't do it on Catalyst, it doesn't feel worth it to do it elsewhere
- Migrates the NotificationTestCases from a Podspec that keeps having issues to a fastlane script which copies in the latest ones
2021-10-16 15:19:41 -07:00

13 lines
399 B
Ruby

source 'https://rubygems.org'
# cocoapods 1.11.x breaks Clibsodium compilation/linking
gem 'cocoapods', '1.10.2'
gem 'cocoapods-acknowledgements'
gem 'fastlane'
gem 'rubocop', require: false
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
# rubocop:disable Security/Eval
eval(File.read(plugins_path), binding) if File.exist?(plugins_path)
# rubocop:enable Security/Eval