fastlane 2.18.2 → 2.18.3
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/fastlane/lib/fastlane/actions/frameit.rb +0 -2
- data/fastlane/lib/fastlane/actions/produce.rb +0 -1
- data/fastlane/lib/fastlane/actions/supply.rb +0 -2
- data/fastlane/lib/fastlane/cli_tools_distributor.rb +4 -0
- data/fastlane/lib/fastlane/commands_generator.rb +1 -2
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/pem/README.md +16 -0
- data/snapshot/lib/.DS_Store +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b113c5764ae5b21122946e3bbe8bb097aae4296
|
|
4
|
+
data.tar.gz: 147a7b7383c995af5dc460ba5e3d4ccf57c58297
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3f45a22f4b83404cbd72a34e2779387427d0e7363d418ada998e6e3bc3e55fc613fd3346cc896a3e95fafbcc20707e8eef2dcdce2aca2fc54f5df4b064308f5
|
|
7
|
+
data.tar.gz: a3a69cdcd2e5a1e6083306ba03db5a3eb540d1a3ab18354db4481a1771b80ee7f895002fd8ce64a5c841c636a233a970ea97a44772fc1080e2464f26d84c69bd
|
|
@@ -5,8 +5,6 @@ module Fastlane
|
|
|
5
5
|
require 'supply'
|
|
6
6
|
require 'supply/options'
|
|
7
7
|
|
|
8
|
-
FastlaneCore::UpdateChecker.start_looking_for_update('supply') unless Helper.is_test?
|
|
9
|
-
|
|
10
8
|
all_apk_paths = Actions.lane_context[SharedValues::GRADLE_ALL_APK_OUTPUT_PATHS] || []
|
|
11
9
|
if all_apk_paths.length > 1
|
|
12
10
|
params[:apk_paths] ||= all_apk_paths
|
|
@@ -22,6 +22,8 @@ module Fastlane
|
|
|
22
22
|
print_slow_fastlane_warning
|
|
23
23
|
end
|
|
24
24
|
|
|
25
|
+
FastlaneCore::UpdateChecker.start_looking_for_update('fastlane')
|
|
26
|
+
|
|
25
27
|
ARGV.unshift("spaceship") if ARGV.first == "spaceauth"
|
|
26
28
|
tool_name = ARGV.first ? ARGV.first.downcase : nil
|
|
27
29
|
|
|
@@ -62,6 +64,8 @@ module Fastlane
|
|
|
62
64
|
require "fastlane/commands_generator"
|
|
63
65
|
Fastlane::CommandsGenerator.start
|
|
64
66
|
end
|
|
67
|
+
ensure
|
|
68
|
+
FastlaneCore::UpdateChecker.show_update_status('fastlane', Fastlane::VERSION)
|
|
65
69
|
end
|
|
66
70
|
|
|
67
71
|
# Since fastlane also supports the rocket and biceps emoji as executable
|
|
@@ -30,7 +30,7 @@ module Fastlane
|
|
|
30
30
|
$stdout = out_channel
|
|
31
31
|
$stderr = out_channel
|
|
32
32
|
end
|
|
33
|
-
|
|
33
|
+
|
|
34
34
|
Fastlane.load_actions
|
|
35
35
|
FastlaneCore::Swag.stop_loader
|
|
36
36
|
# do not use "include" as it may be some where in the commandline where "env" is required, therefore explicit index->0
|
|
@@ -41,7 +41,6 @@ module Fastlane
|
|
|
41
41
|
end
|
|
42
42
|
self.new.run
|
|
43
43
|
ensure
|
|
44
|
-
FastlaneCore::UpdateChecker.show_update_status('fastlane', Fastlane::VERSION)
|
|
45
44
|
Fastlane::PluginUpdateManager.show_update_status
|
|
46
45
|
if FastlaneCore::Globals.capture_output?
|
|
47
46
|
FastlaneCore::Globals.captured_output = Helper.strip_ansi_colors($stdout.string)
|
data/pem/README.md
CHANGED
|
@@ -120,6 +120,22 @@ Instead, you may verify the file is valid using OpenSSL:
|
|
|
120
120
|
|
|
121
121
|
openssl pkcs12 -info -in my.p12
|
|
122
122
|
|
|
123
|
+
If you need the `p12` in your keychain, perhaps to test push with an app like [Knuff](https://github.com/KnuffApp/Knuff) or [Pusher](https://github.com/noodlewerk/NWPusher), you can use `openssl` to export the `p12` to `pem` and back to `p12`:
|
|
124
|
+
|
|
125
|
+
% openssl pkcs12 -in my.p12 -out my.pem
|
|
126
|
+
Enter Import Password:
|
|
127
|
+
<hit enter: the p12 has no password>
|
|
128
|
+
MAC verified OK
|
|
129
|
+
Enter PEM pass phrase:
|
|
130
|
+
<enter a temporary password to encrypt the pem file>
|
|
131
|
+
|
|
132
|
+
% openssl pkcs12 -export -in my.pem -out my-with-passphrase.p12
|
|
133
|
+
Enter pass phrase for temp.pem:
|
|
134
|
+
<enter the temporary password to decrypt the pem file>
|
|
135
|
+
|
|
136
|
+
Enter Export Password:
|
|
137
|
+
<enter a password for encrypting the new p12 file>
|
|
138
|
+
|
|
123
139
|
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
|
124
140
|
|
|
125
141
|
## Environment Variables
|
|
Binary file
|
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.18.
|
|
4
|
+
version: 2.18.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -14,7 +14,7 @@ authors:
|
|
|
14
14
|
autorequire:
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
|
-
date: 2017-02-
|
|
17
|
+
date: 2017-02-23 00:00:00.000000000 Z
|
|
18
18
|
dependencies:
|
|
19
19
|
- !ruby/object:Gem::Dependency
|
|
20
20
|
name: slack-notifier
|
|
@@ -1179,6 +1179,7 @@ files:
|
|
|
1179
1179
|
- sigh/lib/sigh/resign.rb
|
|
1180
1180
|
- sigh/lib/sigh/runner.rb
|
|
1181
1181
|
- snapshot/README.md
|
|
1182
|
+
- snapshot/lib/.DS_Store
|
|
1182
1183
|
- snapshot/lib/assets/SnapfileTemplate
|
|
1183
1184
|
- snapshot/lib/assets/SnapshotHelper.swift
|
|
1184
1185
|
- snapshot/lib/assets/SnapshotHelper2-3.swift
|