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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4afaa2c80de66623e969e8660c8291b9497a6b00
4
- data.tar.gz: 0f8c825fbe6a43d24cb4269e92814023304a12d4
3
+ metadata.gz: 2244008a2a82ab3d841eeb6aad059845f51ed2d0
4
+ data.tar.gz: e957ef861ff401b811ed75114764f51489ac587b
5
5
  SHA512:
6
- metadata.gz: 1b855f0574e8e62988dbbc9edf279e3a9c5e1678c28b460dc3de51bcdc007ee16983bf137a8c62b95de7e13b3a7c85db7c4fb2760b90c38ab2d9f9f8aa4037ea
7
- data.tar.gz: d0de5704c8790ebf50929def018864637ef2ab0514b46021ebeb787fda62462b78658a627aa21990e756f407d2dc62eb209411fed1795846fae79d2379f3e8bb
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)
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.8.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.6"
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cuesmash
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9.6
4
+ version: 0.1.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Fish