scan 0.11.2 → 0.11.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/scan/error_handler.rb +1 -1
- data/lib/scan/runner.rb +2 -2
- data/lib/scan/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91c83c13474968c40f57e93d2500df389dabd28d
|
4
|
+
data.tar.gz: 0db7821b1075b741d826c2cc069153f50bdb2a36
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a081bf29d4f86a53bc5de043746f6e19106715cac8cce29dff506502a5d250abb4445292c0e41566a8652ad794359d51530233465ff9f94c1386011883c576a5
|
7
|
+
data.tar.gz: 1ee046adb8234759e8abb9c919c4fd8822073d960dc15dd926ac12e8dacc8dcd3e251d347a5ef3dbf06152c51206b847ec70330b054875a60ed9c4a631506ea6
|
data/lib/scan/error_handler.rb
CHANGED
@@ -21,7 +21,7 @@ module Scan
|
|
21
21
|
print "For more information visit this stackoverflow answer:"
|
22
22
|
print "https://stackoverflow.com/a/17031697/445598"
|
23
23
|
when /Testing failed/
|
24
|
-
UI.user_error!("Error building the application - see the log above"
|
24
|
+
UI.user_error!("Error building the application - see the log above")
|
25
25
|
when /Executed/
|
26
26
|
# this is *really* important:
|
27
27
|
# we don't want to raise an exception here
|
data/lib/scan/runner.rb
CHANGED
@@ -83,11 +83,11 @@ module Scan
|
|
83
83
|
report_collector.parse_raw_file(TestCommandGenerator.xcodebuild_log_path)
|
84
84
|
|
85
85
|
unless tests_exit_status == 0
|
86
|
-
UI.user_error!("Test execution failed. Exit status: #{tests_exit_status}"
|
86
|
+
UI.user_error!("Test execution failed. Exit status: #{tests_exit_status}")
|
87
87
|
end
|
88
88
|
|
89
89
|
unless result[:failures] == 0
|
90
|
-
UI.user_error!("Tests failed"
|
90
|
+
UI.user_error!("Tests failed")
|
91
91
|
end
|
92
92
|
end
|
93
93
|
|
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.11.
|
4
|
+
version: 0.11.3
|
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-08-
|
11
|
+
date: 2016-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|
@@ -270,7 +270,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
270
270
|
version: '0'
|
271
271
|
requirements: []
|
272
272
|
rubyforge_project:
|
273
|
-
rubygems_version: 2.
|
273
|
+
rubygems_version: 2.5.1
|
274
274
|
signing_key:
|
275
275
|
specification_version: 4
|
276
276
|
summary: The easiest way to run tests of your iOS and Mac app
|