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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3c4eeb547d4bd42e764519acd26d33190d62516
|
4
|
+
data.tar.gz: 8d31fa1a5751940302476c94cc32d262471f9947
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
209
|
+
return_url = (server_url && path) ? File.join(server_url, path) : url
|
210
210
|
|
211
|
-
|
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
|
-
|
33
|
-
|
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,
|
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.
|
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-
|
18
|
+
date: 2017-08-02 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|