cuesmash 0.1.9.6 → 0.1.9.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/cuesmash.gemspec +1 -1
- data/lib/cuesmash/ios_compiler.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2244008a2a82ab3d841eeb6aad059845f51ed2d0
|
4
|
+
data.tar.gz: e957ef861ff401b811ed75114764f51489ac587b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a74afd9d48022dad0976adfad88b577a82713f809611545e4699ce114138ceeebc90367237276fcf5b9dc8cae29216909f2c6a50f8e7c5c2ddd0137c6ba2b38
|
7
|
+
data.tar.gz: d6a513d450bd2be86d3b95ebd45cb18926487b273ee2d739057c38ab656bc901f54e37b796bc6cbb65997e27c754adcf343ce9971de4fec386dfd44def293788
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cuesmash (0.1.9.
|
4
|
+
cuesmash (0.1.9.7)
|
5
5
|
CFPropertyList (>= 2.2.8)
|
6
6
|
rest-client (~> 1.7.2)
|
7
7
|
thor (>= 0.19.1)
|
@@ -42,7 +42,7 @@ GEM
|
|
42
42
|
method_source (0.8.2)
|
43
43
|
mime-types (2.4.3)
|
44
44
|
multi_json (1.10.1)
|
45
|
-
netrc (0.
|
45
|
+
netrc (0.10.2)
|
46
46
|
pry (0.10.1)
|
47
47
|
coderay (~> 1.1.0)
|
48
48
|
method_source (~> 0.8.1)
|
data/cuesmash.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "cuesmash"
|
7
|
-
spec.version = "0.1.9.
|
7
|
+
spec.version = "0.1.9.7"
|
8
8
|
spec.authors = ["Alex Fish", "Jarod McBride", "Tiago Castro"]
|
9
9
|
spec.email = ["fish@ustwo.co.uk", "jarod@ustwo.com", "castro@ustwo.com"]
|
10
10
|
spec.description = "Appium project manager"
|
@@ -2,6 +2,8 @@
|
|
2
2
|
|
3
3
|
module Cuesmash
|
4
4
|
|
5
|
+
require 'shellwords'
|
6
|
+
|
5
7
|
#
|
6
8
|
# iOS Specific compiler
|
7
9
|
#
|
@@ -23,7 +25,7 @@ module Cuesmash
|
|
23
25
|
#
|
24
26
|
# @return [String] The full xcode build command with args
|
25
27
|
def command
|
26
|
-
xcode_command = "set -o pipefail && xcodebuild #{workspace} -scheme '#{@scheme}' -derivedDataPath #{@tmp_dir} -configuration #{@build_configuration} OBJROOT=#{@tmp_dir} SYMROOT=#{@tmp_dir} -sdk iphonesimulator build | bundle exec xcpretty -c"
|
28
|
+
xcode_command = "set -o pipefail && xcodebuild #{workspace} -scheme '#{@scheme}' -derivedDataPath #{@tmp_dir.shellescape} -configuration #{@build_configuration} OBJROOT=#{@tmp_dir.shellescape} SYMROOT=#{@tmp_dir.shellescape} -sdk iphonesimulator build | bundle exec xcpretty -c"
|
27
29
|
|
28
30
|
Logger.info "xcode_command == #{xcode_command}"
|
29
31
|
xcode_command
|