run_loop 4.2.1 → 4.2.2

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: 0ad1516947493faffef78dbaa2bb774111203a5d884fc595391a7f10c5293dcb
4
- data.tar.gz: 5080f55f1b48da60b90c9734d6569811071d449fc868f3e8b75f6f9c36d31359
3
+ metadata.gz: 38e87d9a70e6d71a78eed760a2e680681cb2d8a56c858cad6c518cbde9b5fae8
4
+ data.tar.gz: f9bf92673f4d9aa00afbb9c6eb1d68ceca5a39130054c21666ac729dd6116562
5
5
  SHA512:
6
- metadata.gz: 9f9975d09e345eebc9bd8f39e0f401f75226935e538d8980f79fa876234a9ebd9afc60c396a0e07722691332b712304664ea67376fb8f0ceb0b5fe19131bc0a9
7
- data.tar.gz: 61be452b93bc83d0ad8e9233370772dcb3a61c210bbccd6db2e5d2555f9b78055363fccb57a6ef8316ecb8f671d7e1407660620488b7eb9009752f1c281628ca
6
+ metadata.gz: bd29926251ba1b986759cf35b62fa371f354c5da4f506cc747eeafa75c93206720c0c991db02b4ca0eb3b92e14bf237626dc36da96ccf88f810da7f5df7cc2b2
7
+ data.tar.gz: 86eb35fe358872f78c5d3584e184e245e5343e55c65ecc7bfb118c4b9f617592194b271ed4de7e2ab42802daa121af9dcb0260d14e27a1f40258e250fd68c4af
@@ -131,7 +131,17 @@ class RunLoop::CoreSimulator
131
131
  ["diagnosticd", false],
132
132
  ["syslogd", false],
133
133
  ["mobiletimerd", false],
134
- ["carkitd", false]
134
+ ["carkitd", false],
135
+ ["revisiond", false],
136
+ ["containermanagerd", false],
137
+ ["profiled", false],
138
+ ["locationd", false],
139
+ ["assistantd", false],
140
+ ["com.apple.MobileInstallationHelperService", false],
141
+ ["MobileGestaltHelper", false],
142
+ ["installcoordinationd", false],
143
+ ["installd", false]
144
+
135
145
  ]
136
146
 
137
147
  # @!visibility private
@@ -1,5 +1,5 @@
1
1
  module RunLoop
2
- VERSION = "4.2.1"
2
+ VERSION = "4.2.2"
3
3
 
4
4
  # A model of a software release version that can be used to compare two versions.
5
5
  #
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: run_loop
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.1
4
+ version: 4.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karl Krukow
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-04-10 00:00:00.000000000 Z
12
+ date: 2019-04-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json
@@ -332,7 +332,6 @@ files:
332
332
  - lib/run_loop/cli/cli.rb
333
333
  - lib/run_loop/cli/codesign.rb
334
334
  - lib/run_loop/cli/errors.rb
335
- - lib/run_loop/cli/idm.rb
336
335
  - lib/run_loop/cli/instruments.rb
337
336
  - lib/run_loop/cli/locale.rb
338
337
  - lib/run_loop/cli/simctl.rb
@@ -1,71 +0,0 @@
1
-
2
- module RunLoop
3
- module CLI
4
-
5
- require 'thor'
6
- class IDM < Thor
7
-
8
- require "run_loop"
9
- require "run_loop/cli/errors"
10
- require "run_loop/shell"
11
- include RunLoop::Shell
12
-
13
- require "run_loop/regex"
14
-
15
- desc "install app [OPTIONS]", "Installs an app on a device."
16
-
17
- method_option "device",
18
- :desc => 'The simulator UDID or name.',
19
- :aliases => "-d",
20
- :required => false,
21
- :type => :string
22
-
23
- method_option "debug",
24
- :desc => "Enable debug logging.",
25
- :aliases => "-v",
26
- :required => false,
27
- :default => false,
28
- :type => :boolean
29
-
30
- method_option "force",
31
- :desc => "Force a re-install the existing app",
32
- :aliases => "-f",
33
- :required => false,
34
- :default => false,
35
- :type => :boolean
36
-
37
- def install(app)
38
- extension = File.extname(app)
39
- if extension == ".app"
40
- app_instance = RunLoop::App.new(app)
41
- else
42
- app_instance = RunLoop::Ipa.new(app)
43
- end
44
-
45
- xcode = RunLoop::Xcode.new
46
- simctl = RunLoop::Simctl.new
47
- instruments = RunLoop::Instruments.new
48
-
49
- detect_options = {}
50
-
51
- device = options[:device]
52
- if !device
53
- detect_options[:device] = "device"
54
- else
55
- detect_options[:device] = device
56
- end
57
-
58
- device = RunLoop::Device.detect_device(detect_options, xcode,
59
- simctl, instruments)
60
-
61
- idm = RunLoop::PhysicalDevice::IOSDeviceManager.new(device)
62
-
63
- if options[:force]
64
- idm.install_app(app_instance)
65
- else
66
- idm.ensure_newest_installed(app_instance)
67
- end
68
- end
69
- end
70
- end
71
- end