fastlane 2.114.0.beta.20190113200019 → 2.114.0.beta.20190114200053
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 +4 -4
- data/deliver/lib/deliver/options.rb +1 -1
- data/fastlane/lib/assets/ActionDetails.md.erb +28 -1
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +3 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/keychain_importer.rb +7 -0
- data/snapshot/lib/snapshot/page.html.erb +1 -0
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e1929403a8eb68107c2a99907ec1a34330932bf
|
4
|
+
data.tar.gz: ec72afd0ee6a4f30fe00cb4e4657290909961fb8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0859653605915d2878298d64bb19a9d58c37ab36d73b8acd0addf9981f2ce98746f3766cf73c0c796761b94b08c36c022daf871601c05e83c75773e771a515c
|
7
|
+
data.tar.gz: 44694dd8f2ea7ac86019aba921a95a6b9560e121a3408600a9dc094b72652279c9f67e2c3449b29a49dfeec7d6fb08f21d2335067905f385a9d77b68228bc9ce
|
@@ -184,7 +184,7 @@ module Deliver
|
|
184
184
|
end),
|
185
185
|
FastlaneCore::ConfigItem.new(key: :submission_information,
|
186
186
|
short_option: "-b",
|
187
|
-
description: "Extra information for the submission (e.g.
|
187
|
+
description: "Extra information for the submission (e.g. compliance specifications, IDFA settings)",
|
188
188
|
is_string: false,
|
189
189
|
optional: true),
|
190
190
|
|
@@ -50,12 +50,39 @@ Key | Description | Default
|
|
50
50
|
<% end %><%# End of action.available_options... %>
|
51
51
|
|
52
52
|
<hr />
|
53
|
+
|
54
|
+
## Documentation
|
55
|
+
|
53
56
|
To show the documentation in your terminal, run
|
54
57
|
```no-highlight
|
55
58
|
fastlane action <%= action.action_name %>
|
56
59
|
```
|
57
60
|
|
58
|
-
<
|
61
|
+
<hr />
|
62
|
+
|
63
|
+
## CLI
|
64
|
+
|
65
|
+
It is recommended to add the above action into your `Fastfile`, however sometimes you might want to run one-offs. To do so, you can run the following command from your terminal
|
66
|
+
|
67
|
+
```no-highlight
|
68
|
+
fastlane run <%= @action.action_name %>
|
69
|
+
```
|
70
|
+
|
71
|
+
To pass parameters, make use of the `:` symbol, for example
|
72
|
+
|
73
|
+
```no-highlight
|
74
|
+
fastlane run <%= @action.action_name %> parameter1:"value1" parameter2:"value2"
|
75
|
+
```
|
76
|
+
|
77
|
+
It's important to note that the CLI supports primative types like integers, floats, booleans, and strings. Arrays can be passed as a comma delimited string (e.g. `param:"1,2,3"`). Hashes are not currently supported.
|
78
|
+
|
79
|
+
It is recommended to add all _fastlane_ actions you use to your `Fastfile`.
|
80
|
+
|
81
|
+
<hr />
|
82
|
+
|
83
|
+
## Source code
|
84
|
+
|
85
|
+
This action, just like the rest of _fastlane_, is fully open source, <a href="https://github.com/fastlane/fastlane/blob/master/fastlane/lib/fastlane/actions/<%= @action_filename %>" target="_blank">view the source code on GitHub</a>
|
59
86
|
|
60
87
|
<hr />
|
61
88
|
|
@@ -412,6 +412,9 @@ end
|
|
412
412
|
|
413
413
|
Omit `build_number` to let _fastlane_ automatically select the latest build number for the current version being edited for release from App Store Connect.
|
414
414
|
|
415
|
+
### Compliance and IDFA settings
|
416
|
+
|
417
|
+
Use the `submission_information` parameter for additional submission specifiers, including compliance and IDFA settings. Look at the Spaceship's [`app_submission.rb`](https://github.com/fastlane/fastlane/blob/master/spaceship/lib/spaceship/tunes/app_submission.rb) file for options. See [this example](https://github.com/artsy/eigen/blob/faa02e2746194d8d7c11899474de9c517435eca4/fastlane/Fastfile#L131-L149).
|
415
418
|
|
416
419
|
# Credentials
|
417
420
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.114.0.beta.
|
2
|
+
VERSION = '2.114.0.beta.20190114200053'.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
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
@@ -26,6 +26,13 @@ module FastlaneCore
|
|
26
26
|
|
27
27
|
UI.command(command) if output
|
28
28
|
Open3.popen3(command) do |stdin, stdout, stderr, thrd|
|
29
|
+
if output
|
30
|
+
Helper.show_loading_indicator("Importing keys...")
|
31
|
+
UI.command(command)
|
32
|
+
UI.command_output(stdout.read)
|
33
|
+
Helper.hide_loading_indicator
|
34
|
+
end
|
35
|
+
|
29
36
|
unless thrd.value.success?
|
30
37
|
UI.error("")
|
31
38
|
UI.error("Could not configure imported keychain item (certificate) to prevent UI permission popup when code signing\n" \
|
@@ -209,6 +209,7 @@
|
|
209
209
|
tmpImg.src = img.src;
|
210
210
|
imageDisplay.style.height = 'auto';
|
211
211
|
imageDisplay.style.width = 'auto';
|
212
|
+
imageDisplay.style.paddingTop = 0;
|
212
213
|
if (window.innerHeight < tmpImg.height) {
|
213
214
|
imageDisplay.style.height = document.documentElement.clientHeight+'px';
|
214
215
|
} else if (window.innerWidth < tmpImg.width) {
|
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.114.0.beta.
|
4
|
+
version: 2.114.0.beta.20190114200053
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stefan Natchev
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2019-01-
|
30
|
+
date: 2019-01-14 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1682,24 +1682,24 @@ metadata:
|
|
1682
1682
|
post_install_message:
|
1683
1683
|
rdoc_options: []
|
1684
1684
|
require_paths:
|
1685
|
-
-
|
1686
|
-
-
|
1687
|
-
- pem/lib
|
1685
|
+
- snapshot/lib
|
1686
|
+
- supply/lib
|
1688
1687
|
- deliver/lib
|
1688
|
+
- fastlane/lib
|
1689
|
+
- pem/lib
|
1690
|
+
- pilot/lib
|
1691
|
+
- spaceship/lib
|
1692
|
+
- gym/lib
|
1689
1693
|
- cert/lib
|
1690
|
-
- scan/lib
|
1691
|
-
- fastlane_core/lib
|
1692
1694
|
- credentials_manager/lib
|
1693
|
-
-
|
1694
|
-
- precheck/lib
|
1695
|
+
- produce/lib
|
1695
1696
|
- match/lib
|
1696
|
-
- supply/lib
|
1697
|
-
- gym/lib
|
1698
1697
|
- sigh/lib
|
1698
|
+
- fastlane_core/lib
|
1699
|
+
- precheck/lib
|
1700
|
+
- scan/lib
|
1699
1701
|
- screengrab/lib
|
1700
|
-
-
|
1701
|
-
- produce/lib
|
1702
|
-
- snapshot/lib
|
1702
|
+
- frameit/lib
|
1703
1703
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1704
1704
|
requirements:
|
1705
1705
|
- - ">="
|