scan 0.4.2 → 0.5.0

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: 87e6b6cd3aaf7c5ef8c91517e55a28fbd812ce3a
4
- data.tar.gz: 4e96eee5c095f22acf1bb02eeadf99b727c146c6
3
+ metadata.gz: ff1ef1423d38f2a0573c6659631bfb3b9678917c
4
+ data.tar.gz: c668d810e46bce5d2c32aec61275b03a37fadc7f
5
5
  SHA512:
6
- metadata.gz: ba4238fc1a80a03faa45d2fb16d8d0afb4777d7ecec671880e34148d6984030299fc3114f7754890b17e333ed77a8549a7e289982fb6bf43690c344083d54096
7
- data.tar.gz: 12712852d84ef344b292e4d11e9d0e226c23426fb9f09ffaeaca0deddd17824e47800a46892de4d1f93c987dd2807f5905f85f529874748d1df70542bfc3f77d
6
+ metadata.gz: 3f5ab80168b063ef519a54281ed666efb529970265f2381e9922524d8cf8593beaa2c0abebfc281aee17054ea2121051b8e12139bbe0b9f4299347a15c467776
7
+ data.tar.gz: 3644db9fbf8545368c9eb41ba07907db6de6faa10331abb1528eae034dad45a714f9eaa092fa798aaac6679ff27d9aa37ef6e79b280e6e41df88dc0c0bf083bf
data/README.md CHANGED
@@ -199,6 +199,9 @@ For more information visit the [fastlane GitHub page](https://github.com/fastlan
199
199
  # Need help?
200
200
  Please submit an issue on GitHub and provide information about your setup
201
201
 
202
+ # Code of Conduct
203
+ Help us keep `scan` open and inclusive. Please read and follow our [Code of Conduct](https://github.com/fastlane/code-of-conduct).
204
+
202
205
  # License
203
206
  This project is licensed under the terms of the MIT license. See the LICENSE file.
204
207
 
@@ -50,6 +50,11 @@ module Scan
50
50
  description: "Should generate code coverage (Xcode 7 only)?",
51
51
  is_string: false,
52
52
  default_value: false),
53
+ FastlaneCore::ConfigItem.new(key: :skip_build,
54
+ description: "Should skip debug build before test build?",
55
+ short_option: "-r",
56
+ is_string: false,
57
+ default_value: false),
53
58
  FastlaneCore::ConfigItem.new(key: :output_directory,
54
59
  short_option: "-o",
55
60
  env_name: "SCAN_OUTPUT_DIRECTORY",
@@ -66,7 +66,7 @@ module Scan
66
66
 
67
67
  ReportCollector.new.parse_raw_file(TestCommandGenerator.xcodebuild_log_path)
68
68
 
69
- raise "Tests failed" unless result[:failures] == 0
69
+ UI.user_error!("Tests failed") unless result[:failures] == 0
70
70
  end
71
71
  end
72
72
  end
@@ -48,7 +48,7 @@ module Scan
48
48
 
49
49
  actions = []
50
50
  actions << :clean if config[:clean]
51
- actions << :build
51
+ actions << :build unless config[:skip_build]
52
52
  actions << :test
53
53
 
54
54
  actions
@@ -1,4 +1,4 @@
1
1
  module Scan
2
- VERSION = "0.4.2"
3
- DESCRIPTION = "Making sure no bad code gets on board"
2
+ VERSION = "0.5.0"
3
+ DESCRIPTION = "The easiest way to run tests of your iOS and Mac app"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-22 00:00:00.000000000 Z
11
+ date: 2016-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.32.0
19
+ version: 0.36.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 1.0.0
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.32.0
29
+ version: 0.36.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.0.0
@@ -212,7 +212,7 @@ dependencies:
212
212
  - - ">="
213
213
  - !ruby/object:Gem::Version
214
214
  version: '0'
215
- description: Making sure no bad code gets on board
215
+ description: The easiest way to run tests of your iOS and Mac app
216
216
  email:
217
217
  - scan@krausefx.com
218
218
  executables:
@@ -256,9 +256,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
256
256
  version: '0'
257
257
  requirements: []
258
258
  rubyforge_project:
259
- rubygems_version: 2.2.2
259
+ rubygems_version: 2.4.0
260
260
  signing_key:
261
261
  specification_version: 4
262
- summary: Making sure no bad code gets on board
262
+ summary: The easiest way to run tests of your iOS and Mac app
263
263
  test_files: []
264
264
  has_rdoc: