Merge pull request #118 from mas-cli/configure-bundler

💎 Configure bundler
This commit is contained in:
Ben Chatelain 2018-01-26 19:56:47 -07:00 committed by GitHub
commit b895ca99ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -2,3 +2,5 @@
BUNDLE_CLEAN: "true"
BUNDLE_BIN: "bin"
BUNDLE_JOBS: "8"
BUNDLE_DISABLE_SHARED_GEMS: "true"
BUNDLE_PATH: ".rubygems"

View file

@ -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