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: c2cd3f5195d4a214e2e0eb4b8f06d557f0600cd75102367183085ad0d9f82b6d
4
- data.tar.gz: 72b6353c9a35f4a41c37690f5f163b91b7e2f34603a77ae85bc44e7e80d8a682
3
+ metadata.gz: 4dec2fe9c3146f0bfb6aaa05b977cdd8904843801a19575c6677db2f96f6c6cb
4
+ data.tar.gz: 92aefc4043bf15f57ca522cf1723d11ba63c90ebce983ba8a598b568c6447e0f
5
5
  SHA512:
6
- metadata.gz: 7ca8f66dd604ad84a95d5c605135486cd3713c41dc110d720344c933d740ae417728cce1aee554e89d10f5cd29ed195731da69fc30ab617761da39396fb9ee59
7
- data.tar.gz: ead7aa7a621d005b8226a2844167a883e92399c649d443c51a80ea5944294be4686c964dfcee5f36b87074b4a6720efb2c3f693e83266cc2ddf06a78048723e8
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
- sh("echo 'iOS #{params[:version]} Simulator' | ipsw download xcode --sim") if Dir['*.dmg'].first.nil?
13
- sh("#{params[:custom_script]} #{Dir['*.dmg'].first}")
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.65'
3
+ VERSION = '0.3.66'
4
4
  end
5
5
  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.65
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-08-19 00:00:00.000000000 Z
11
+ date: 2024-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xctest_list