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: 0103c17face38cbcd796b2dfe0bd3def13bdc168725147c5762fa3a9d82bfc5b
4
- data.tar.gz: 755c3ce2fac773ab52e85be741e7bd10c387f953a2160f6c24d9f23b54cd0d48
3
+ metadata.gz: 2a1fc0b3506dd9206f5d85dc27dde08cf15e6a1cfa74e4cec322f5e1beb2c223
4
+ data.tar.gz: 78b3e47e9499fedd2fc5645c31d22248fd4ffcf6bea4ed243dbc1838d4d9e782
5
5
  SHA512:
6
- metadata.gz: '0923e9a98ee7ea40c064edf8b30712209a4f359c6e4a21ed6a0188b4e9171f96c19854711ce5fb5fb9b4a20ba03c736566a112d6a7708601010e8f5ab9c4be63'
7
- data.tar.gz: dbf92fd9cba26dbce68fd233f9c2e744f93aa66fb12a49c8512146dad354dbd7269c5e828608360d727c9b26622e5c6d20897fb61a197c965c69c5d56c9115d1
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
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Maestro
3
- VERSION = "0.0.5"
3
+ VERSION = "0.0.6"
4
4
  end
5
5
  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.5
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-12 00:00:00.000000000 Z
11
+ date: 2024-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry