fastlane-plugin-maestro 0.0.5 → 0.0.6
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: 2a1fc0b3506dd9206f5d85dc27dde08cf15e6a1cfa74e4cec322f5e1beb2c223
|
4
|
+
data.tar.gz: 78b3e47e9499fedd2fc5645c31d22248fd4ffcf6bea4ed243dbc1838d4d9e782
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9735ddf0518738f9051ec4b37458875d6b058a1da4d584b97607e0b0e4d9d0d5f4c3b0ac1a04745a6d29e3bdfe7dc32a9b472ae043c59490395896e3ed83ce4f
|
7
|
+
data.tar.gz: 84f3fe4905a746afb5376cebc8834ad515aac28fe6d3017a10b9c04a889c9156744d44e7a68d8bdd7df5d066da8e45b80bb25952b7e9f1d26277580fb0d7685c
|
@@ -26,12 +26,16 @@ module Fastlane
|
|
26
26
|
if existing_device.state == :booted
|
27
27
|
UI.message("Device #{device_name} is already running. Patching settings…")
|
28
28
|
patch_device_settings(existing_device, params)
|
29
|
+
UI.message("Installing app #{params[:app_path]} on the simulator")
|
30
|
+
device.install(params[:app_path])
|
29
31
|
return existing_device
|
30
32
|
elsif existing_device.state == :shutdown
|
31
33
|
UI.message("Device #{device_name} is shutdown. Booting device…")
|
32
34
|
existing_device.boot
|
33
35
|
existing_device.wait { |d| d.state == :booted }
|
34
36
|
patch_device_settings(existing_device, params)
|
37
|
+
UI.message("Installing app #{params[:app_path]} on the simulator")
|
38
|
+
device.install(params[:app_path])
|
35
39
|
return existing_device
|
36
40
|
end
|
37
41
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-maestro
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marc Bormeth
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|