run_loop 1.5.6.pre1 → 1.5.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 +4 -4
- data/lib/run_loop/cli/simctl.rb +5 -7
- data/lib/run_loop/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbbee55fbd11dd5c1cd13fa461ae1be917adc6d3
|
|
4
|
+
data.tar.gz: 22f0456c4949e71f6c8d2d951d7f0aa559448674
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 434db36ae98ba6a3530cb164d9ac0379fbe59cfad22a2851901530abbe20393668ff3c8be03e046a180b3a168f4842376825bb13920fb0f3c9b9417e5b125902
|
|
7
|
+
data.tar.gz: 351adc46d8f2849bb6c1b5f8b0772073f3608776fabe3ee324e16daed86e8d6b07fa58fc22f59881d86c60b979a27a2f050e2af6bc5759be833dc3c1e88f36e3
|
data/lib/run_loop/cli/simctl.rb
CHANGED
|
@@ -58,7 +58,7 @@ module RunLoop
|
|
|
58
58
|
|
|
59
59
|
if device
|
|
60
60
|
RunLoop::Environment.with_debugging(debug) do
|
|
61
|
-
launch_simulator(device)
|
|
61
|
+
launch_simulator(device, xcode)
|
|
62
62
|
end
|
|
63
63
|
else
|
|
64
64
|
launch_each_simulator
|
|
@@ -69,16 +69,14 @@ module RunLoop
|
|
|
69
69
|
|
|
70
70
|
no_commands do
|
|
71
71
|
def launch_each_simulator
|
|
72
|
-
sim_control = RunLoop::SimControl.new
|
|
73
72
|
sim_control.simulators.each do |simulator|
|
|
74
|
-
launch_simulator(simulator,
|
|
73
|
+
launch_simulator(simulator, xcode)
|
|
75
74
|
end
|
|
76
75
|
end
|
|
77
76
|
|
|
78
|
-
def launch_simulator(simulator,
|
|
79
|
-
core_sim = RunLoop::
|
|
80
|
-
|
|
81
|
-
sim_control)
|
|
77
|
+
def launch_simulator(simulator, xcode)
|
|
78
|
+
core_sim = RunLoop::CoreSimulator.new(simulator, nil,
|
|
79
|
+
{:xcode => xcode})
|
|
82
80
|
core_sim.launch_simulator
|
|
83
81
|
end
|
|
84
82
|
end
|
data/lib/run_loop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: run_loop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.6
|
|
4
|
+
version: 1.5.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karl Krukow
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-10-
|
|
11
|
+
date: 2015-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
@@ -344,9 +344,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
344
344
|
version: '1.9'
|
|
345
345
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
346
346
|
requirements:
|
|
347
|
-
- - "
|
|
347
|
+
- - ">="
|
|
348
348
|
- !ruby/object:Gem::Version
|
|
349
|
-
version:
|
|
349
|
+
version: '0'
|
|
350
350
|
requirements: []
|
|
351
351
|
rubyforge_project:
|
|
352
352
|
rubygems_version: 2.4.8
|