From e31a200c41ec27a9ac9887624139797ac91aaa4b Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Mon, 30 Sep 2019 13:23:42 +0300 Subject: [PATCH] install ruby dependencies from Gemfile --- xcode/commonFastfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xcode/commonFastfile b/xcode/commonFastfile index ad49254..6e8b230 100644 --- a/xcode/commonFastfile +++ b/xcode/commonFastfile @@ -9,6 +9,10 @@ private_lane :installDependencies do |options| sh("rm -rf #{podsReposPath}") end + if File.exists? "../Gemfile" + bundle_install(path: "../.gem") + end + if File.exists? "../Cartfile" begin carthage(command: "bootstrap", platform: "iOS")