fastlane 2.51.0.beta.20170801010002 → 2.51.0.beta.20170802010003

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: 6b7154ce6c6869110c4c94fdc77db8f3dd1e932e
4
- data.tar.gz: ec53f30dec18657fc108e380065c80e0ab7fa8e8
3
+ metadata.gz: d3c4eeb547d4bd42e764519acd26d33190d62516
4
+ data.tar.gz: 8d31fa1a5751940302476c94cc32d262471f9947
5
5
  SHA512:
6
- metadata.gz: 1996f23847656b19666e29039e78c829c7a5c45b6605324e99ebacd778c48fac3951c29b1add3bd4270b51c13b5acae753885b54e9cf8df4ead5e8b213626100
7
- data.tar.gz: 5bcffb28de712b6faa3c163047bd666944fbcf2bd4db294b6da4958d155eb98659c90535d981f2f6f6db9a2367d054ebd6c67f0a21d0b997bf615644c25dc38c
6
+ metadata.gz: 7ee950b2bce11f0f5eb8e491c9c1e31a657060f1ad3bde428e8055bd48c0bf690dc587b24159d92841661e938220b8b5270ae05d3ac99e1356ec4d6a64b40929
7
+ data.tar.gz: 34f401b36b46c44e88c7d9b925ccac9d8703ceca1f1fa549c7e85dfc263407002eb878ebfe02cafbb8ce101ab02abb4134d963bfee17cbd9fae0460f671ee95c
@@ -25,12 +25,8 @@ For _fastlane_ plugins, check out the [available plugins](https://docs.fastlane.
25
25
  <%- @categories.each do |category, actions| %>
26
26
  # <%= category %>
27
27
 
28
- <div class='category-actions'>
29
-
30
28
  <%- actions.sort.to_h.each do |_number_of_launches, action| -%>
31
29
 
32
- <div class='action'>
33
-
34
30
  ### <%= action.action_name %>
35
31
 
36
32
  <%= action.description %>
@@ -39,7 +35,7 @@ For _fastlane_ plugins, check out the [available plugins](https://docs.fastlane.
39
35
 
40
36
  <%= "> #{action.details.gsub("\n\n", "\n")}" unless action.details.to_s.empty? %>
41
37
 
42
- <%= action.action_name %> |
38
+ <%= action.action_name %> |
43
39
  -----|----
44
40
  Supported platforms | <%= [:ios, :android, :mac].find_all { |a| action.is_supported?(a) }.join(", ") %>
45
41
  Author | @<%= Array(action.author || action.authors).join(", @") %>
@@ -71,11 +67,9 @@ Key | Description
71
67
  `<%= config_item.key %>` | <%= config_item.description %>
72
68
  <%- end %>
73
69
  </details>
74
- </div>
75
70
 
76
71
  <% end %><%# End of action.available_options... %>
77
72
 
78
73
  <%- end %><%# End of actions.sort... %>
79
- </div>
80
74
 
81
75
  <%- end %><%# End of categories.each %>
@@ -206,11 +206,9 @@ module Fastlane
206
206
  end
207
207
 
208
208
  def construct_url(server_url, path, url)
209
- UI.user_error!("Please provide server URL, eg: https://api.github.com") unless server_url
209
+ return_url = (server_url && path) ? File.join(server_url, path) : url
210
210
 
211
- return_url = path ? File.join(server_url, path) : url
212
-
213
- UI.user_error!("Please provide either 'path' or full 'url' for GitHub API endpoint") unless return_url
211
+ UI.user_error!("Please provide either `server_url` (e.g. https://api.github.com) and 'path' or full 'url' for GitHub API endpoint") unless return_url
214
212
 
215
213
  return_url
216
214
  end
@@ -29,8 +29,12 @@ module Fastlane
29
29
  # More information about how to set up your project and how it works:
30
30
  # https://developer.apple.com/library/ios/qa/qa1827/_index.html
31
31
  # Attention: This is NOT the version number - but the build number
32
- agv_enabled = system([command_prefix, 'agvtool what-version', command_suffix].join(' '))
33
- raise "Apple Generic Versioning is not enabled." unless Helper.test? || agv_enabled
32
+
33
+ # We do not want to run agvtool under tests to avoid output about not having a project available
34
+ unless Helper.test?
35
+ agv_enabled = system([command_prefix, 'agvtool what-version', command_suffix].join(' '))
36
+ raise "Apple Generic Versioning is not enabled." unless agv_enabled
37
+ end
34
38
 
35
39
  command = [
36
40
  command_prefix,
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.51.0.beta.20170801010002'.freeze
2
+ VERSION = '2.51.0.beta.20170802010003'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  MINIMUM_XCODE_RELEASE = "7.0".freeze
5
5
  end
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.51.0.beta.20170801010002
4
+ version: 2.51.0.beta.20170802010003
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -15,7 +15,7 @@ authors:
15
15
  autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
- date: 2017-08-01 00:00:00.000000000 Z
18
+ date: 2017-08-02 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier