fastlane 2.50.1 → 2.51.0.beta.20170801010002
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fastlane/lib/assets/Actions.md.erb +7 -1
- data/fastlane/lib/fastlane/actions/github_api.rb +4 -2
- data/fastlane/lib/fastlane/actions/increment_build_number.rb +2 -6
- data/fastlane/lib/fastlane/version.rb +1 -1
- metadata +18 -21
- data/fastlane_core/lib/fastlane_core/.DS_Store +0 -0
- data/supply/lib/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b7154ce6c6869110c4c94fdc77db8f3dd1e932e
|
4
|
+
data.tar.gz: ec53f30dec18657fc108e380065c80e0ab7fa8e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1996f23847656b19666e29039e78c829c7a5c45b6605324e99ebacd778c48fac3951c29b1add3bd4270b51c13b5acae753885b54e9cf8df4ead5e8b213626100
|
7
|
+
data.tar.gz: 5bcffb28de712b6faa3c163047bd666944fbcf2bd4db294b6da4958d155eb98659c90535d981f2f6f6db9a2367d054ebd6c67f0a21d0b997bf615644c25dc38c
|
@@ -25,8 +25,12 @@ 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
|
+
|
28
30
|
<%- actions.sort.to_h.each do |_number_of_launches, action| -%>
|
29
31
|
|
32
|
+
<div class='action'>
|
33
|
+
|
30
34
|
### <%= action.action_name %>
|
31
35
|
|
32
36
|
<%= action.description %>
|
@@ -35,7 +39,7 @@ For _fastlane_ plugins, check out the [available plugins](https://docs.fastlane.
|
|
35
39
|
|
36
40
|
<%= "> #{action.details.gsub("\n\n", "\n")}" unless action.details.to_s.empty? %>
|
37
41
|
|
38
|
-
<%= action.action_name %> |
|
42
|
+
<%= action.action_name %> |
|
39
43
|
-----|----
|
40
44
|
Supported platforms | <%= [:ios, :android, :mac].find_all { |a| action.is_supported?(a) }.join(", ") %>
|
41
45
|
Author | @<%= Array(action.author || action.authors).join(", @") %>
|
@@ -67,9 +71,11 @@ Key | Description
|
|
67
71
|
`<%= config_item.key %>` | <%= config_item.description %>
|
68
72
|
<%- end %>
|
69
73
|
</details>
|
74
|
+
</div>
|
70
75
|
|
71
76
|
<% end %><%# End of action.available_options... %>
|
72
77
|
|
73
78
|
<%- end %><%# End of actions.sort... %>
|
79
|
+
</div>
|
74
80
|
|
75
81
|
<%- end %><%# End of categories.each %>
|
@@ -206,9 +206,11 @@ module Fastlane
|
|
206
206
|
end
|
207
207
|
|
208
208
|
def construct_url(server_url, path, url)
|
209
|
-
|
209
|
+
UI.user_error!("Please provide server URL, eg: https://api.github.com") unless server_url
|
210
210
|
|
211
|
-
|
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
|
212
214
|
|
213
215
|
return_url
|
214
216
|
end
|
@@ -29,12 +29,8 @@ 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
|
-
|
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
|
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
|
38
34
|
|
39
35
|
command = [
|
40
36
|
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.
|
4
|
+
version: 2.51.0.beta.20170801010002
|
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-01 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|
@@ -1093,7 +1093,6 @@ files:
|
|
1093
1093
|
- fastlane_core/README.md
|
1094
1094
|
- fastlane_core/lib/assets/XMLTemplate.xml.erb
|
1095
1095
|
- fastlane_core/lib/fastlane_core.rb
|
1096
|
-
- fastlane_core/lib/fastlane_core/.DS_Store
|
1097
1096
|
- fastlane_core/lib/fastlane_core/build_watcher.rb
|
1098
1097
|
- fastlane_core/lib/fastlane_core/cert_checker.rb
|
1099
1098
|
- fastlane_core/lib/fastlane_core/command_executor.rb
|
@@ -1385,7 +1384,6 @@ files:
|
|
1385
1384
|
- spaceship/lib/spaceship/two_step_client.rb
|
1386
1385
|
- spaceship/lib/spaceship/ui.rb
|
1387
1386
|
- supply/README.md
|
1388
|
-
- supply/lib/.DS_Store
|
1389
1387
|
- supply/lib/supply.rb
|
1390
1388
|
- supply/lib/supply/apk_listing.rb
|
1391
1389
|
- supply/lib/supply/client.rb
|
@@ -1403,24 +1401,24 @@ metadata:
|
|
1403
1401
|
post_install_message:
|
1404
1402
|
rdoc_options: []
|
1405
1403
|
require_paths:
|
1406
|
-
-
|
1407
|
-
-
|
1408
|
-
-
|
1404
|
+
- spaceship/lib
|
1405
|
+
- scan/lib
|
1406
|
+
- sigh/lib
|
1407
|
+
- snapshot/lib
|
1408
|
+
- screengrab/lib
|
1409
1409
|
- fastlane/lib
|
1410
|
-
-
|
1411
|
-
-
|
1410
|
+
- cert/lib
|
1411
|
+
- pem/lib
|
1412
1412
|
- gym/lib
|
1413
|
+
- produce/lib
|
1414
|
+
- deliver/lib
|
1415
|
+
- supply/lib
|
1413
1416
|
- match/lib
|
1414
|
-
-
|
1417
|
+
- frameit/lib
|
1418
|
+
- credentials_manager/lib
|
1415
1419
|
- pilot/lib
|
1416
1420
|
- precheck/lib
|
1417
|
-
-
|
1418
|
-
- scan/lib
|
1419
|
-
- screengrab/lib
|
1420
|
-
- sigh/lib
|
1421
|
-
- snapshot/lib
|
1422
|
-
- spaceship/lib
|
1423
|
-
- supply/lib
|
1421
|
+
- fastlane_core/lib
|
1424
1422
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1425
1423
|
requirements:
|
1426
1424
|
- - ">="
|
@@ -1428,15 +1426,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1428
1426
|
version: 2.0.0
|
1429
1427
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1430
1428
|
requirements:
|
1431
|
-
- - "
|
1429
|
+
- - ">"
|
1432
1430
|
- !ruby/object:Gem::Version
|
1433
|
-
version:
|
1431
|
+
version: 1.3.1
|
1434
1432
|
requirements: []
|
1435
1433
|
rubyforge_project:
|
1436
|
-
rubygems_version: 2.5.
|
1434
|
+
rubygems_version: 2.4.5.1
|
1437
1435
|
signing_key:
|
1438
1436
|
specification_version: 4
|
1439
1437
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
1440
1438
|
Android apps
|
1441
1439
|
test_files: []
|
1442
|
-
has_rdoc:
|
Binary file
|
data/supply/lib/.DS_Store
DELETED
Binary file
|