fastlane 2.50.1 → 2.51.0.beta.20170801010002

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5abe4869ab2d6a2269eb427b8d09b96c0d123362
4
- data.tar.gz: d7471e4f49a0014b4b51ff21f4e5248c86c16632
3
+ metadata.gz: 6b7154ce6c6869110c4c94fdc77db8f3dd1e932e
4
+ data.tar.gz: ec53f30dec18657fc108e380065c80e0ab7fa8e8
5
5
  SHA512:
6
- metadata.gz: 30603855136568aa0c0ccc56ae9ccc361abda8dd7b3c7c2d7db988a16811719089b6854cb547df567cb87956cfa50030559c449d3af928cd7d438d8274fb5d83
7
- data.tar.gz: afb8b31b35cea3704c3f5f7f7768ac5813017cfef79a64d420dce0f69268a8c1a4d2af48d09694b6092b84d1cf5cc8523b80f9eeae6d6bfc768e61d4df332324
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
- return_url = (server_url && path) ? File.join(server_url, path) : url
209
+ UI.user_error!("Please provide server URL, eg: https://api.github.com") unless server_url
210
210
 
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
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
- # 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
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,
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.50.1'.freeze
2
+ VERSION = '2.51.0.beta.20170801010002'.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.1
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-02 00:00:00.000000000 Z
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
- - cert/lib
1407
- - credentials_manager/lib
1408
- - deliver/lib
1404
+ - spaceship/lib
1405
+ - scan/lib
1406
+ - sigh/lib
1407
+ - snapshot/lib
1408
+ - screengrab/lib
1409
1409
  - fastlane/lib
1410
- - fastlane_core/lib
1411
- - frameit/lib
1410
+ - cert/lib
1411
+ - pem/lib
1412
1412
  - gym/lib
1413
+ - produce/lib
1414
+ - deliver/lib
1415
+ - supply/lib
1413
1416
  - match/lib
1414
- - pem/lib
1417
+ - frameit/lib
1418
+ - credentials_manager/lib
1415
1419
  - pilot/lib
1416
1420
  - precheck/lib
1417
- - produce/lib
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: '0'
1431
+ version: 1.3.1
1434
1432
  requirements: []
1435
1433
  rubyforge_project:
1436
- rubygems_version: 2.5.2
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