fastlane-plugin-prepare_build_resources 1.0.1 → 1.0.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75df0cde3e7a59203d99262991eba37e935c04a2
|
|
4
|
+
data.tar.gz: b8a5695b6fb8ee898b6daaa3a781ab08502a9e43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1d023c46747c86a0dd4942cb73b2c018d4b9fe67c42da9dc9e1e6dea75f7aeb08e54e5bca09d07926868ef3d1d1f1a97243c420ebfb0acd36b30785925b953b
|
|
7
|
+
data.tar.gz: e0047e2aba572f2edefbed2a472e60dc3e865ebd86aaeb761c9544d9937623b78e4e232dcdd6af7f6d14da62fbd392d4a9e248274728a223a90b100b37de3f23
|
|
@@ -31,6 +31,11 @@ module Fastlane
|
|
|
31
31
|
proc { |_| self.safe_cleanup_resource(safe_keychain_path, safe_profile_paths, known_keychains) }
|
|
32
32
|
)
|
|
33
33
|
|
|
34
|
+
self.execute(
|
|
35
|
+
"security set-keychain-settings -t #{params[:keychain_timeout]} -l #{safe_keychain_path.shellescape}",
|
|
36
|
+
proc { |_| self.safe_cleanup_resource(safe_keychain_path, safe_profile_paths, known_keychains) }
|
|
37
|
+
)
|
|
38
|
+
|
|
34
39
|
begin
|
|
35
40
|
Dir.chdir('fastlane') do
|
|
36
41
|
params[:build].call(safe_keychain_path, safe_profile_paths) unless @dry_run
|
|
@@ -200,6 +205,12 @@ module Fastlane
|
|
|
200
205
|
description: "Password to the supplied keychain",
|
|
201
206
|
optional: false,
|
|
202
207
|
type: String),
|
|
208
|
+
FastlaneCore::ConfigItem.new(key: :keychain_timeout,
|
|
209
|
+
env_name: "PREPARE_BUILD_RESOURCES_KEYCHAIN_TIMEOUT",
|
|
210
|
+
description: "Timeout for the keychain (specifying when it locks again)",
|
|
211
|
+
default_value: 3600,
|
|
212
|
+
optional: true,
|
|
213
|
+
type: Integer),
|
|
203
214
|
FastlaneCore::ConfigItem.new(key: :provisioning_profile_paths,
|
|
204
215
|
env_name: "PREPARE_BUILD_RESOURCES_YOUR_PROVISIONING_PROFILE_PATHS",
|
|
205
216
|
description: "Paths to the provisioning profiles that need to be available while building",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-prepare_build_resources
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jakob Jensen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-02-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|