scan 0.4.2 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/lib/scan/options.rb +5 -0
- data/lib/scan/runner.rb +1 -1
- data/lib/scan/test_command_generator.rb +1 -1
- data/lib/scan/version.rb +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff1ef1423d38f2a0573c6659631bfb3b9678917c
|
4
|
+
data.tar.gz: c668d810e46bce5d2c32aec61275b03a37fadc7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
data/lib/scan/options.rb
CHANGED
@@ -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",
|
data/lib/scan/runner.rb
CHANGED
data/lib/scan/version.rb
CHANGED
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
|
+
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-
|
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.
|
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.
|
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:
|
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.
|
259
|
+
rubygems_version: 2.4.0
|
260
260
|
signing_key:
|
261
261
|
specification_version: 4
|
262
|
-
summary:
|
262
|
+
summary: The easiest way to run tests of your iOS and Mac app
|
263
263
|
test_files: []
|
264
264
|
has_rdoc:
|