xcjobs 0.3.0 → 0.4.0

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: e4c4306b452320be5d2c072f1698f3c7d8f7a4fb
4
- data.tar.gz: d6a07bf56db736e8930823b9ab9ac2b9bcada113
3
+ metadata.gz: 5fdaf4f2e80d7be553721c2adb080cbaae0e238c
4
+ data.tar.gz: 7c426437c1ec3970b4dfa1d4a67aa98d103035a7
5
5
  SHA512:
6
- metadata.gz: 09b03987ce8067398f09a528f910b0312af2f9fd6b6e94d9d84d66e135795da91da749453159645e78d2a73e415024c3b9fae2b0b16db79e3bb590303f73554a
7
- data.tar.gz: 1e14499775964041a9d4ddad1a25fbc224228953c8118df02bb4ec4478437e71e68ec112b41b776de91fca999f347a5800588e2fecb7b2f9d068b3acc3e6a90f
6
+ metadata.gz: cf6c81defbc9a47975927fa78985510976e8d191434ddf60b3b64dd9598af4b7e46e65545375f11cd8fd52fd0302af03498c63c49b1a20b8dc50fb1fa1fb29fb
7
+ data.tar.gz: d0b9d47d87f13706c2e6a0c47906bed19b6ef3e464ecf8d1469d907a207e7bec741a4bdf35fb25fdcedd6c509655b2ad12fbf9838bfa6d2947d80ba8b234b715
data/.travis.yml CHANGED
@@ -6,6 +6,7 @@ rvm:
6
6
  - 2.0.0
7
7
  - 2.1
8
8
  - 2.2
9
+ - 2.3.0
9
10
  branches:
10
11
  only:
11
12
  - master
data/circle.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  dependencies:
2
2
  pre:
3
- - case $CIRCLE_NODE_INDEX in 0) rvm use 1.9.3 --default ;; 1) rvm use 2.0.0 --default ;; 2) rvm use 2.1 --default ;; 3) rvm use 2.2 --default ;; esac
3
+ - case $CIRCLE_NODE_INDEX in 0) rvm use 1.9.3 --default ;; 1) rvm use 2.0.0 --default ;; 2) rvm use 2.1 --default ;; 3) rvm use 2.2 --default ;; 4) rvm use 2.3 --default ;; esac
4
4
  test:
5
5
  override:
6
6
  - ruby -v ; bundle exec rspec --format documentation --color spec: {parallel: true}
@@ -1,3 +1,3 @@
1
1
  module XCJobs
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
@@ -217,7 +217,7 @@ module XCJobs
217
217
  executable_name = settings['EXECUTABLE_NAME']
218
218
  target_path = File.join(File.join(target_dir, settings['CURRENT_ARCH']), executable_name)
219
219
  else
220
- target_dir = settings['CODESIGNING_FOLDER_PATH'].gsub('Build/Products', "Build/Intermediates/CodeCoverage/#{target}/Products")
220
+ target_dir = settings['CODESIGNING_FOLDER_PATH'].gsub('Build/Products', "Build/Intermediates/CodeCoverage/Products")
221
221
  executable_name = settings['EXECUTABLE_NAME']
222
222
  target_path = File.join(target_dir, executable_name)
223
223
  end
@@ -225,7 +225,7 @@ module XCJobs
225
225
 
226
226
  end
227
227
 
228
- code_coverage_dir = settings['BUILD_DIR'].gsub('Build/Products', "/Build/Intermediates/CodeCoverage/")
228
+ code_coverage_dir = settings['BUILD_DIR'].gsub('Build/Products', "Build/Intermediates/CodeCoverage")
229
229
  profdata_path = File.join(code_coverage_dir, 'Coverage.profdata')
230
230
 
231
231
  show_coverage(profdata_path, target_path)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcjobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - kishikawa katsumi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-28 00:00:00.000000000 Z
11
+ date: 2016-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler