fastlane 2.27.0.beta.20170411010118 → 2.27.0.beta.20170412010036
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/fastlane/lib/fastlane/cli_tools_distributor.rb +2 -1
- data/fastlane/lib/fastlane/documentation/docs_generator.rb +1 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/print_table.rb +2 -2
- data/snapshot/lib/snapshot/detect_values.rb +2 -1
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de6b7e9ad8c5114b904ec0dd018e2ee9f0e4ac1e
|
4
|
+
data.tar.gz: 7e9e656ac79f663f1e867c52d6ae4dbfb7f38f85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 513996251287b00879c9aadf35745bc3289851bde38b9811f4007de53b6f8e2909dbaac0fa425b836955737e249233430802143485e68f9e9d4421f75c6cabf6
|
7
|
+
data.tar.gz: a5ffff7af09acdaed2abb9ecd88b2a8b79108d8b3ccecdff75b9ecb59ebe998b63b6afc4b04e766e852c33b2e7a382a544dcb12644d42a643010ef7b69ae5ecd
|
@@ -48,13 +48,14 @@ module Fastlane
|
|
48
48
|
require File.join(tool_name, "commands_generator")
|
49
49
|
|
50
50
|
# Call the tool's CommandsGenerator class and let it do its thing
|
51
|
-
Object.const_get(tool_name.fastlane_module)::CommandsGenerator
|
51
|
+
commands_generator = Object.const_get(tool_name.fastlane_module)::CommandsGenerator
|
52
52
|
rescue LoadError
|
53
53
|
# This will only happen if the tool we call here, doesn't provide
|
54
54
|
# a CommandsGenerator class yet
|
55
55
|
# When we launch this feature, this should never be the case
|
56
56
|
abort("#{tool_name} can't be called via `fastlane #{tool_name}`, run '#{tool_name}' directly instead".red)
|
57
57
|
end
|
58
|
+
commands_generator.start
|
58
59
|
elsif tool_name == "fastlane-credentials"
|
59
60
|
require 'credentials_manager'
|
60
61
|
ARGV.shift
|
@@ -97,10 +97,10 @@ module FastlaneCore
|
|
97
97
|
col_count = rows.map(&:length).first || 1
|
98
98
|
|
99
99
|
# -4 per column - as tt adds "| " and " |"
|
100
|
-
terminal_table_padding =
|
100
|
+
terminal_table_padding = 4
|
101
101
|
max_length = number_of_cols - (col_count * terminal_table_padding)
|
102
102
|
|
103
|
-
max_value_length = (max_length / col_count)
|
103
|
+
max_value_length = (max_length / col_count) - 1
|
104
104
|
|
105
105
|
return_array = rows.map do |row|
|
106
106
|
row.map do |column|
|
@@ -43,8 +43,9 @@ module Snapshot
|
|
43
43
|
|
44
44
|
# Filter iPhones
|
45
45
|
# Full list: ["iPhone 4s", "iPhone 5", "iPhone 5s", "iPhone 6", "iPhone 6 Plus", "iPhone 6s", "iPhone 6s Plus"]
|
46
|
-
next if sim.name.include?("6s") # same screen resolution as iPhone 6, or iPhone 6s Plus
|
47
46
|
next if sim.name.include?("5s") # same screen resolution as iPhone 5
|
47
|
+
next if sim.name.include?("SE") # duplicate of iPhone 5
|
48
|
+
next if sim.name.include?("iPhone 6") # same as iPhone 7
|
48
49
|
|
49
50
|
next if sim.name.include?("Apple TV")
|
50
51
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.27.0.beta.
|
4
|
+
version: 2.27.0.beta.20170412010036
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -14,7 +14,7 @@ authors:
|
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
|
-
date: 2017-04-
|
17
|
+
date: 2017-04-12 00:00:00.000000000 Z
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
20
20
|
name: slack-notifier
|
@@ -1298,22 +1298,22 @@ post_install_message:
|
|
1298
1298
|
rdoc_options: []
|
1299
1299
|
require_paths:
|
1300
1300
|
- fastlane_core/lib
|
1301
|
+
- spaceship/lib
|
1302
|
+
- scan/lib
|
1301
1303
|
- fastlane/lib
|
1304
|
+
- deliver/lib
|
1305
|
+
- match/lib
|
1302
1306
|
- screengrab/lib
|
1303
|
-
-
|
1304
|
-
- credentials_manager/lib
|
1305
|
-
- gym/lib
|
1307
|
+
- pilot/lib
|
1306
1308
|
- pem/lib
|
1307
|
-
- snapshot/lib
|
1308
1309
|
- cert/lib
|
1309
|
-
- frameit/lib
|
1310
|
-
- deliver/lib
|
1311
|
-
- scan/lib
|
1312
1310
|
- produce/lib
|
1311
|
+
- gym/lib
|
1313
1312
|
- sigh/lib
|
1314
|
-
-
|
1315
|
-
-
|
1316
|
-
-
|
1313
|
+
- snapshot/lib
|
1314
|
+
- frameit/lib
|
1315
|
+
- supply/lib
|
1316
|
+
- credentials_manager/lib
|
1317
1317
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1318
1318
|
requirements:
|
1319
1319
|
- - ">="
|