fastlane-plugin-test_center 1.1.0 → 1.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
  SHA1:
3
- metadata.gz: 50cdc0bc096ef766ad176d7c5e51b85b4f5121e4
4
- data.tar.gz: c549ea3d1e9a4f02c74facecbacc348f97416a4e
3
+ metadata.gz: 955dd4a0e11a6df53e2e331261e75449c6a98b66
4
+ data.tar.gz: 17cb30b15ae142a3bff45993587fbb99c89a407e
5
5
  SHA512:
6
- metadata.gz: 5c99174266472769fc0b8c08970fcee676a0b93ca7a8a610db75eb5bd4aa51734455106202370375c86becbe23c154d192e543a5dad284a9f27e60399611f0fe
7
- data.tar.gz: ffc01ee84db78faac5a18d83a76e7e31d2b24f32d3f01df16fb34eec6afdbc4c7860528660d801758a05aac092d5481369ac2615c1815edd89cb57edecea6716
6
+ metadata.gz: 87e7045522c6c02df2f3f56547443d1721aede96cb8b4892b67bd36b6695b5fb9343aa79a8eab193bc3123a5ce2b84b3202e1a0486c540a5e34fa5c29b74bce3
7
+ data.tar.gz: 4ac55baa649472aa34287540d367043a4e91f095ab6b312ded438c749a948b3b3a37d93896845be810f7114d7b7116b9a2c00274337defce90c98f3f0d14ee2b
@@ -17,7 +17,8 @@ module Fastlane
17
17
 
18
18
  begin
19
19
  try_count += 1
20
- other_action.scan(scan_options)
20
+ config = FastlaneCore::Configuration.create(Fastlane::Actions::ScanAction.available_options, scan_options)
21
+ Fastlane::Actions::ScanAction.run(config)
21
22
  rescue FastlaneCore::Interface::FastlaneTestFailure => e
22
23
  UI.verbose("Scan failed with #{e}")
23
24
  report_filepath = junit_report_filepath(scan_options)
@@ -30,7 +31,8 @@ module Fastlane
30
31
  def self.build_for_testing(scan_options)
31
32
  scan_options.delete(:test_without_building)
32
33
  scan_options[:build_for_testing] = true
33
- other_action.scan(scan_options)
34
+ config = FastlaneCore::Configuration.create(Fastlane::Actions::ScanAction.available_options, scan_options)
35
+ Fastlane::Actions::ScanAction.run(config)
34
36
  end
35
37
 
36
38
  def self.config_has_junit_report(config)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module TestCenter
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-test_center
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lyndsey Ferguson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-19 00:00:00.000000000 Z
11
+ date: 2017-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -169,3 +169,4 @@ signing_key:
169
169
  specification_version: 4
170
170
  summary: Makes testing your iOS app easier
171
171
  test_files: []
172
+ has_rdoc: