mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-22 05:47:01 -05:00
- 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
13 lines
399 B
Ruby
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
|