fastlane 2.50.0 → 2.50.1

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: 4bcea6a1f68d82ce8f7490a64d9bb4734aba11cc
4
- data.tar.gz: a6f24ff351403a7d87e9b614b9b0e5546542d18b
3
+ metadata.gz: 5abe4869ab2d6a2269eb427b8d09b96c0d123362
4
+ data.tar.gz: d7471e4f49a0014b4b51ff21f4e5248c86c16632
5
5
  SHA512:
6
- metadata.gz: a18267f30b1f5335b969f9ebc3687d05dd1a2ddbb4cd22edc8c730d53e77bf36efd99ebeb023fa601a853220c5becc66218983fc3b9ad2a57b9251906417be81
7
- data.tar.gz: 56aa6d2e0ee98bf8bccf0b0be9e496e68f53b26219ca464ad7b1d79446a7f3b236c7716e2b6bda47ce55a96c98262f2964fa0cd55316e278af57adf998aa3fe6
6
+ metadata.gz: 30603855136568aa0c0ccc56ae9ccc361abda8dd7b3c7c2d7db988a16811719089b6854cb547df567cb87956cfa50030559c449d3af928cd7d438d8274fb5d83
7
+ data.tar.gz: afb8b31b35cea3704c3f5f7f7768ac5813017cfef79a64d420dce0f69268a8c1a4d2af48d09694b6092b84d1cf5cc8523b80f9eeae6d6bfc768e61d4df332324
@@ -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.50.0'.freeze
2
+ VERSION = '2.50.1'.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.50.0
4
+ version: 2.50.1
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-07-31 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