fastlane-plugin-stream_actions 0.3.65 → 0.3.66
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: 4dec2fe9c3146f0bfb6aaa05b977cdd8904843801a19575c6677db2f96f6c6cb
|
|
4
|
+
data.tar.gz: 92aefc4043bf15f57ca522cf1723d11ba63c90ebce983ba8a598b568c6447e0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70b17c6ab38cf96141c4ad7d71bf7de00de498faf070d757f09a96f57219c38b8d0356bf0449333dd577c185464b570bd532de54b1d488fa72614d5a0c398e9f
|
|
7
|
+
data.tar.gz: 384a61fc2dc30ea2ad5707e4c8aae4de1731346bdebd463a7ed2c4bbaf6e6907512fe59873384fa8b6b65e3b46d7b97dfd431802dcd8a32327484f7466fea12d
|
|
@@ -9,8 +9,12 @@ module Fastlane
|
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
if simulators.empty?
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
if params[:tool] == 'ipsw'
|
|
13
|
+
sh("echo 'iOS #{params[:version]} Simulator' | ipsw download xcode --sim") if Dir['*.dmg'].first.nil?
|
|
14
|
+
sh("#{params[:custom_script]} #{Dir['*.dmg'].first}") if params[:custom_script]
|
|
15
|
+
else
|
|
16
|
+
sh("sudo xcodes runtimes install 'iOS #{params[:version]}'")
|
|
17
|
+
end
|
|
14
18
|
UI.success("iOS #{params[:version]} Runtime successfuly installed")
|
|
15
19
|
else
|
|
16
20
|
UI.important("iOS #{params[:version]} Runtime already exists")
|
|
@@ -31,9 +35,18 @@ module Fastlane
|
|
|
31
35
|
key: :version,
|
|
32
36
|
description: 'iOS Version'
|
|
33
37
|
),
|
|
38
|
+
FastlaneCore::ConfigItem.new(
|
|
39
|
+
key: :tool,
|
|
40
|
+
description: 'Which tool to use to install the runtime: ipsw or xcodes',
|
|
41
|
+
default_value: 'ipsw',
|
|
42
|
+
verify_block: proc do |tool|
|
|
43
|
+
UI.user_error!('Available options are `ipsw` and `xcodes`') unless ['xcodes', 'ipsw'].include?(tool)
|
|
44
|
+
end
|
|
45
|
+
),
|
|
34
46
|
FastlaneCore::ConfigItem.new(
|
|
35
47
|
key: :custom_script,
|
|
36
|
-
description: 'Path to custom script to install the runtime'
|
|
48
|
+
description: 'Path to custom script to install the runtime (might be required for ipsw)',
|
|
49
|
+
optional: true
|
|
37
50
|
)
|
|
38
51
|
]
|
|
39
52
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-stream_actions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.66
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GetStream
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-09-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: xctest_list
|