xcresult 0.1.0 → 0.1.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
  SHA256:
3
- metadata.gz: 7e803e4f4efa10ae02a23a22470d368254de016013d8f5dbccf3d5eb0653b9eb
4
- data.tar.gz: 7bf7102868ea4e19f54851ed211cc2f13d4b7e23c91bb3d93b7947a519b38055
3
+ metadata.gz: b8b059189c741bbaf7e5f4a5c23ef524dcf57a012001a138ca975564718846d6
4
+ data.tar.gz: 34c8ba16f96f43e0672289e99f910367fb06fed72f550c8aae2ffaa04bc8d78a
5
5
  SHA512:
6
- metadata.gz: f42c7fba1715507dc254005973dcdb843c7c90d4b75234db4396b7787834ce2770e3226bb5765967d3f2e6de78d58d137936bea023d254a2a849514bc9a653ef
7
- data.tar.gz: 7b5a60d608d08d3a41799406891d0960e4e0df9da645b4bb116eed117eeaa3846427446937fbbcd6c3118276f95e1386868f5a562491b90127c534c0282d44e8
6
+ metadata.gz: 11cdf9db657dafb8fa579cdbf3a7359abe3026cdfaf23dda45c8271e6d6678c675360b0c3cb27d30d1985890e4c23099f06ba56ed85f61a7b069115efa34c36b
7
+ data.tar.gz: 9bc16d6b395414bbac5c8da3a48e82974c59222a9bfa5f4bfc12df83eaa048293a3440d451c1da9432e878f4c3f3cc0929c017eeccc8cbb3a9caa44d14ab9bcf
@@ -36,7 +36,7 @@ module XCResult
36
36
  @action_test_plan_summaries
37
37
  end
38
38
 
39
- def export_xccovreport(destination: nil)
39
+ def export_xccovreports(destination: nil)
40
40
  destination ||= Dir.pwd
41
41
 
42
42
  coverages = actions_invocation_record.actions.map do |action|
@@ -63,7 +63,7 @@ module XCResult
63
63
 
64
64
  def execute_cmd(cmd)
65
65
  output = `#{cmd}`
66
- raise "Failed to execute - #{cmd}" unless $CHILD_STATUS.success?
66
+ raise "Failed to execute - #{cmd}" unless $?.success?
67
67
 
68
68
  output
69
69
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module XCResult
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcresult
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Holtz