fastlane-plugin-teak 1.0.2 → 1.0.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c7ee6064bf30b91adb375f710db15bbaeb90c84362bc667d51aa4e85491eb197
|
|
4
|
+
data.tar.gz: 0f1629cff383d91376097e6aed45375d12218730801b9f6190d0e1abd66582c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8aeb37e8bccc5d0c3721ac0d2717d767a8c54a822961bb64881f1500af2b15562c5b1312f079aa7504811886250ff2d2fbe7f50cc2d6f29f0c04b31df9894767
|
|
7
|
+
data.tar.gz: 2abf4d3d07abdf32a4d5ac4986c4ada8e08b7041274b26200bd6d88732611e63a693557c4bc714d122a5dc7c4c9bb3662f5e140108302b612e51d9591c3d9f93
|
|
@@ -16,7 +16,7 @@ module Fastlane
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
# Execute a block that will be provided with a path to a p12, a provisioning profile, and a passphrase
|
|
19
|
-
def self.with_credentials_for(app_id, type: 'development')
|
|
19
|
+
def self.with_credentials_for(app_id, type: 'development', match_options = { readonly: true })
|
|
20
20
|
keychain_name = SecureRandom.hex
|
|
21
21
|
keychain_pass = SecureRandom.hex
|
|
22
22
|
|
|
@@ -33,9 +33,8 @@ module Fastlane
|
|
|
33
33
|
params = FastlaneCore::Configuration.create(Match::Options.available_options, {
|
|
34
34
|
app_identifier: app_id,
|
|
35
35
|
type: type,
|
|
36
|
-
readonly: true,
|
|
37
36
|
keychain_name: keychain_name
|
|
38
|
-
})
|
|
37
|
+
}.merge(match_options))
|
|
39
38
|
Actions::MatchAction.run(params)
|
|
40
39
|
|
|
41
40
|
# Get the location of the provisioning profile
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-teak
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pat Wilson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xcodeproj
|
|
@@ -52,6 +52,20 @@ dependencies:
|
|
|
52
52
|
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '1.12'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: gem-release
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '2.0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '2.0'
|
|
55
69
|
- !ruby/object:Gem::Dependency
|
|
56
70
|
name: rspec
|
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -190,7 +204,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
190
204
|
version: '0'
|
|
191
205
|
requirements: []
|
|
192
206
|
rubyforge_project:
|
|
193
|
-
rubygems_version: 2.7.
|
|
207
|
+
rubygems_version: 2.7.9
|
|
194
208
|
signing_key:
|
|
195
209
|
specification_version: 4
|
|
196
210
|
summary: Fastlane plugins for the Teak SDK
|