From 2315713a9d148c3339e110461db80d61940d16f0 Mon Sep 17 00:00:00 2001 From: Ben Chatelain Date: Fri, 26 Jan 2018 19:40:27 -0700 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=92=8E=20Configure=20bundler?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Install gems to local .rubygems folder --- .bundle/config | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.bundle/config b/.bundle/config index 41afd47..8d2dd95 100644 --- a/.bundle/config +++ b/.bundle/config @@ -2,3 +2,5 @@ BUNDLE_CLEAN: "true" BUNDLE_BIN: "bin" BUNDLE_JOBS: "8" +BUNDLE_DISABLE_SHARED_GEMS: "true" +BUNDLE_PATH: ".rubygems" From ca4edd4ea9226e88eba8f30c992686e0fc571787 Mon Sep 17 00:00:00 2001 From: Ben Chatelain Date: Fri, 26 Jan 2018 19:51:01 -0700 Subject: [PATCH 2/2] Invoke xcpretty through bundler --- script/build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/build b/script/build index 4df01b7..37a8a6d 100755 --- a/script/build +++ b/script/build @@ -16,7 +16,7 @@ build() { -scheme mas-cli \ -configuration Release \ clean build \ - | xcpretty --color + | bundle exec xcpretty --color } archive() { @@ -25,7 +25,7 @@ archive() { -scheme mas-cli \ -archivePath mas.xcarchive \ archive \ - | xcpretty --color + | bundle exec xcpretty --color } main