fastlane_core 0.27.0 → 0.28.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 +4 -4
- data/lib/fastlane_core/command_executor.rb +0 -13
- data/lib/fastlane_core/project.rb +7 -1
- data/lib/fastlane_core/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: 91fc2f52c866a8347a057dd45f6734fb192303a5
|
|
4
|
+
data.tar.gz: 71b696f8c444e64187a31fbfc7009ded60e0dea1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0f5f662a7e349040b28d1582eb2f8c775b4c4042c88f00b5d382e8b56a401924dfe860f8dcb181f73e7f727032e8ba8e2bdd82162ac416bc5fe2c1fea4a86f9
|
|
7
|
+
data.tar.gz: a3f5146dcc4a4319ad83658b87d8e301aa68a7e3684bf6f27931a538dcc9bbd9ac9e76abfea6495ca2332b44883fc61e2c929f4705630494ff4670d6b8fb1f39
|
|
@@ -18,7 +18,6 @@ module FastlaneCore
|
|
|
18
18
|
Helper.log.info command.yellow.strip if print_command
|
|
19
19
|
|
|
20
20
|
if print_all and loading # this is only used to show the "Loading text"...
|
|
21
|
-
clear_display
|
|
22
21
|
puts loading.cyan
|
|
23
22
|
end
|
|
24
23
|
|
|
@@ -37,11 +36,8 @@ module FastlaneCore
|
|
|
37
36
|
line = element[:prefix] + line if element[:block] && element[:block].call(line)
|
|
38
37
|
end
|
|
39
38
|
|
|
40
|
-
# The actual output here, first clear and then print out 3 lines
|
|
41
|
-
clear_display
|
|
42
39
|
puts line
|
|
43
40
|
end
|
|
44
|
-
clear_display # IMPORTANT: This has to be *before* the Process.wait
|
|
45
41
|
Process.wait(pid)
|
|
46
42
|
end
|
|
47
43
|
rescue => ex
|
|
@@ -64,15 +60,6 @@ module FastlaneCore
|
|
|
64
60
|
|
|
65
61
|
return output.join("\n")
|
|
66
62
|
end
|
|
67
|
-
|
|
68
|
-
def clear_display
|
|
69
|
-
return if Helper.ci?
|
|
70
|
-
return if Helper.test?
|
|
71
|
-
|
|
72
|
-
if Helper.iterm?
|
|
73
|
-
system("clear")
|
|
74
|
-
end
|
|
75
|
-
end
|
|
76
63
|
end
|
|
77
64
|
end
|
|
78
65
|
end
|
|
@@ -167,8 +167,14 @@ module FastlaneCore
|
|
|
167
167
|
false
|
|
168
168
|
end
|
|
169
169
|
|
|
170
|
+
def tvos?
|
|
171
|
+
return true if build_settings(key: "PLATFORM_NAME").to_s.include? "appletv"
|
|
172
|
+
return true if build_settings(key: "PLATFORM_DISPLAY_NAME").to_s.include? "tvOS"
|
|
173
|
+
false
|
|
174
|
+
end
|
|
175
|
+
|
|
170
176
|
def ios?
|
|
171
|
-
!mac?
|
|
177
|
+
!mac? && !tvos?
|
|
172
178
|
end
|
|
173
179
|
|
|
174
180
|
def xcodebuild_parameters
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.28.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: 2015-12-
|
|
11
|
+
date: 2015-12-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -362,7 +362,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
362
362
|
version: '0'
|
|
363
363
|
requirements: []
|
|
364
364
|
rubyforge_project:
|
|
365
|
-
rubygems_version: 2.
|
|
365
|
+
rubygems_version: 2.2.2
|
|
366
366
|
signing_key:
|
|
367
367
|
specification_version: 4
|
|
368
368
|
summary: Contains all shared code/dependencies of the fastlane.tools
|