xcov 1.4.3 → 1.5.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: 2a0dac38761769c713c26a25d73383d5aa4e6a7a
4
- data.tar.gz: 3fc7f9941ab481911404423bad5a95b58978d6a4
3
+ metadata.gz: 8b3406fd7df676982a6c5f171dd0725594d4f204
4
+ data.tar.gz: 6a264701c62cbb46fb2a2aa4ba84a83cdb07f94a
5
5
  SHA512:
6
- metadata.gz: f9c00ec264c7dbb77e0862e0b0fac763c6806588e4106a712658737060306df8d780ecafbf6959c58c4e28d0b157c6ec2b2b5fe67598d95fdff39a3831b48892
7
- data.tar.gz: 0af534980fd515d0abbc52e5a3a0f3c8d97d9ad98b09d3240f4fefdb4e785355acc93b27bd6a62a41dce30f7184b8cc0fa66a27137a6df176baf1290173b4733
6
+ metadata.gz: dcced483c0d5d5ad93e03a826c37d86d242cbd0e228cf3a4b58a07ef5eff7ad35b93187229177228b6d5928b83e76d813edf5cb03d1cf31a6ac2c70e0ac53946
7
+ data.tar.gz: 075f8bc5005687506214cd5142868351916890dab9b3c240a815f745f42e44ce3b4c1be6bf2d79e1d48e7973c3261614d0f81021502b1ae6fb5fbffd1265798b
data/README.md CHANGED
@@ -150,6 +150,8 @@ If you want to keep track of the coverage evolution and get some extra features,
150
150
  [![initFabian](https://avatars1.githubusercontent.com/u/8469495?v=3&s=50)](https://github.com/initFabian)
151
151
  [![revolter](https://avatars1.githubusercontent.com/u/5748627?v=3&s=50)](https://github.com/revolter)
152
152
  [![chrisballinger](https://avatars1.githubusercontent.com/u/518687?v=3&s=50)](https://github.com/chrisballinger)
153
+ [![ngs](https://avatars1.githubusercontent.com/u/18631?v=3&s=50)](https://github.com/ngs)
154
+ [![aaroncrespo](https://avatars1.githubusercontent.com/u/431662?v=3&s=50)](https://github.com/aaroncrespo)
153
155
 
154
156
 
155
157
  ## License
@@ -93,7 +93,7 @@ module Xcov
93
93
  end
94
94
 
95
95
  def digest_for_file(file_path)
96
- hash = `git hash-object #{file_path}`
96
+ hash = `git hash-object "#{file_path}"`
97
97
  hash.delete!("\n")
98
98
  return hash
99
99
  end
@@ -39,7 +39,7 @@ module Xcov
39
39
  # Find .xccoverage file
40
40
  extension = Xcov.config[:legacy_support] ? "xccoverage" : "xccovreport"
41
41
  test_logs_path = derived_data_path + "Logs/Test/"
42
- xccoverage_files = Dir["#{test_logs_path}*.#{extension}"].sort_by { |filename| File.mtime(filename) }.reverse
42
+ xccoverage_files = Dir["#{test_logs_path}*.#{extension}", "#{test_logs_path}*.xcresult/*/action.#{extension}"].sort_by { |filename| File.mtime(filename) }.reverse
43
43
 
44
44
  unless test_logs_path.directory? && !xccoverage_files.empty?
45
45
  ErrorHandler.handle_error("XccoverageFileNotFound")
@@ -1,6 +1,6 @@
1
1
  module Xcov
2
2
 
3
- VERSION = "1.4.3"
3
+ VERSION = "1.5.0"
4
4
  DESCRIPTION = "xcov is a friendly visualizer for Xcode's code coverage files"
5
5
 
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcov
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.3
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carlos Vidal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-09 00:00:00.000000000 Z
11
+ date: 2018-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane
@@ -196,7 +196,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
196
196
  version: '0'
197
197
  requirements: []
198
198
  rubyforge_project:
199
- rubygems_version: 2.4.8
199
+ rubygems_version: 2.5.2.3
200
200
  signing_key:
201
201
  specification_version: 4
202
202
  summary: xcov is a friendly visualizer for Xcode's code coverage files