xcjobs 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1eb63c93a78d7fdc076af6cd7fefa3608e6fe196
4
- data.tar.gz: 1dbfcba0c866410ce9c1e0c74ac7c0dc875bb883
3
+ metadata.gz: 5f72c51fd91c95674b99b70444f69bcfad9f028d
4
+ data.tar.gz: ca6958de688052da7cbefd1e6a77c3e03f991b17
5
5
  SHA512:
6
- metadata.gz: 59da10ad0d509a80a03ddf4cf9ad7c5aa291af7d84935d3d55dfa0a2b1bc61fc15d3398f390308e5ee3469fcf44722b62e24c97280e911a3e09dd18bd7efd9c1
7
- data.tar.gz: 57e7e7165061fa0da650bc9dd01166598becefc127e570ca473163bd5c9769c46dcd6615be7db075fb00b7107ecc2a4b5151b414408b748a335e21505b92fba2
6
+ metadata.gz: ef9f3f25ba19e2c7dddde7c8689d91d1815e5003f647e90bf3c49ba316ce594e76a7e89dbda171869fdd43bdee7ad1816bd86b57022fa3ec741e48f38702b5ef
7
+ data.tar.gz: e42e3ba58b1749692e8c0672366d49f22383427f17cc574c98e81f1852c73c195aa6f6f30a4899e5633ef62f5062feaf57e1388cbb8c4119329c5992075ca302
@@ -1,3 +1,3 @@
1
1
  module XCJobs
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
@@ -221,16 +221,14 @@ module XCJobs
221
221
  if product_type == 'com.apple.product-type.framework' || product_type == 'com.apple.product-type.application'
222
222
  if sdk.start_with?('iphone') && settings['ONLY_ACTIVE_ARCH'] == 'NO'
223
223
  executable_name = settings['EXECUTABLE_NAME']
224
- target_path = Dir.glob(File.join(objroot, '/**/' +executable_name)).first
225
224
  else
226
225
  executable_name = product_type == 'com.apple.product-type.application' ? settings['EXECUTABLE_PATH'] : settings['EXECUTABLE_NAME']
227
- target_path = Dir.glob(File.join(objroot, '/**/' +executable_name)).select { |f| File.stat(f).file? }.first
228
226
  end
227
+ target_path = Dir.glob(File.join(objroot, '/**/' +executable_name)).select { |f| File.stat(f).file? }.first
229
228
  elsif
230
229
  raise %[Product type (PRODUCT_TYPE) '#{product_type}' is unsupported.]
231
230
  end
232
231
 
233
- puts target_path
234
232
  profdata_path = Dir.glob(File.join(objroot, '/**/Coverage.profdata')).first
235
233
 
236
234
  show_coverage(profdata_path, target_path)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcjobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - kishikawa katsumi