fastlane 2.27.0.beta.20170411010118 → 2.27.0.beta.20170412010036

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c815f1412c3aafe00f983fbe2ecc208e804f25f7
4
- data.tar.gz: 01fa2028e5438676870579525b66ed8c6d10e415
3
+ metadata.gz: de6b7e9ad8c5114b904ec0dd018e2ee9f0e4ac1e
4
+ data.tar.gz: 7e9e656ac79f663f1e867c52d6ae4dbfb7f38f85
5
5
  SHA512:
6
- metadata.gz: 29f25708fc842daf956f6501bc754fbf65b4d83873b58bf58ce88c446c8a494284ccfc512e84abbb1623b0d1065828924a68ebc541fd9d84e8708ac70b1bad56
7
- data.tar.gz: 910fdd9c719091fc539c6943282dd9ee912877472263cab8f97690eaf092368045cda634c75a020c381691736834fd27734355c0b06441fd420209e71249450d
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.start
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
@@ -33,7 +33,7 @@ module Fastlane
33
33
  output << "<td width=\"33%\"><code>sudo gem install fastlane -NV</code></td>"
34
34
  output << "</tr>"
35
35
  output << "</table>"
36
-
36
+ output << ""
37
37
  output << "# Available Actions"
38
38
 
39
39
  all_keys = ff.runner.lanes.keys.reject(&:nil?)
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.27.0.beta.20170411010118'.freeze
2
+ VERSION = '2.27.0.beta.20170412010036'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -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 = 0
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.20170411010118
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-11 00:00:00.000000000 Z
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
- - supply/lib
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
- - match/lib
1315
- - pilot/lib
1316
- - spaceship/lib
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
  - - ">="