run_loop 1.4.1 → 1.5.0
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/app.rb +10 -0
- data/lib/run_loop/cli/simctl.rb +9 -3
- data/lib/run_loop/core.rb +65 -37
- data/lib/run_loop/device.rb +71 -19
- data/lib/run_loop/host_cache.rb +10 -0
- data/lib/run_loop/instruments.rb +223 -23
- data/lib/run_loop/ipa.rb +5 -0
- data/lib/run_loop/l10n.rb +117 -0
- data/lib/run_loop/lipo.rb +10 -0
- data/lib/run_loop/regex.rb +19 -0
- data/lib/run_loop/sim_control.rb +63 -54
- data/lib/run_loop/simctl/bridge.rb +6 -1
- data/lib/run_loop/version.rb +5 -1
- data/lib/run_loop/xcode.rb +228 -0
- data/lib/run_loop/xctools.rb +109 -94
- data/lib/run_loop.rb +22 -0
- data/scripts/run_loop_fast_uia.js +7 -1
- data/scripts/run_loop_host.js +8 -2
- data/scripts/run_loop_shared_element.js +7 -1
- metadata +6 -4
@@ -206,7 +206,13 @@ function isLocationPrompt(alert) {
|
|
206
206
|
["OK", /Would Like to Access Your Photos/],
|
207
207
|
["OK", /Would Like to Access Your Contacts/],
|
208
208
|
["OK", /Location Accuracy/],
|
209
|
-
["OK", /запрашивает разрешение на использование Ващей текущей пгеопозиции/]
|
209
|
+
["OK", /запрашивает разрешение на использование Ващей текущей пгеопозиции/],
|
210
|
+
["OK", /Access the Microphone/],
|
211
|
+
["OK", /enviarle notificaiones/],
|
212
|
+
["OK", /Would Like to Access Your Calendar/],
|
213
|
+
["OK", /Would Like to Access Your Reminders/],
|
214
|
+
["OK", /Would Like to Access Your Motion Activity/],
|
215
|
+
["OK", /Would Like to Access the Camera/]
|
210
216
|
],
|
211
217
|
ans, exp,
|
212
218
|
txt;
|
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.
|
4
|
+
version: 1.5.0
|
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-
|
11
|
+
date: 2015-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -298,6 +298,7 @@ files:
|
|
298
298
|
- lib/run_loop/host_cache.rb
|
299
299
|
- lib/run_loop/instruments.rb
|
300
300
|
- lib/run_loop/ipa.rb
|
301
|
+
- lib/run_loop/l10n.rb
|
301
302
|
- lib/run_loop/lipo.rb
|
302
303
|
- lib/run_loop/lldb.rb
|
303
304
|
- lib/run_loop/logging.rb
|
@@ -306,10 +307,12 @@ files:
|
|
306
307
|
- lib/run_loop/plist_buddy.rb
|
307
308
|
- lib/run_loop/process_terminator.rb
|
308
309
|
- lib/run_loop/process_waiter.rb
|
310
|
+
- lib/run_loop/regex.rb
|
309
311
|
- lib/run_loop/sim_control.rb
|
310
312
|
- lib/run_loop/simctl/bridge.rb
|
311
313
|
- lib/run_loop/simctl/plists.rb
|
312
314
|
- lib/run_loop/version.rb
|
315
|
+
- lib/run_loop/xcode.rb
|
313
316
|
- lib/run_loop/xctools.rb
|
314
317
|
- plists/simctl/com.apple.UIAutomation.plist
|
315
318
|
- plists/simctl/com.apple.UIAutomationPlugIn.plist
|
@@ -344,10 +347,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
344
347
|
version: '0'
|
345
348
|
requirements: []
|
346
349
|
rubyforge_project:
|
347
|
-
rubygems_version: 2.4.
|
350
|
+
rubygems_version: 2.4.5.1
|
348
351
|
signing_key:
|
349
352
|
specification_version: 4
|
350
353
|
summary: The bridge between Calabash iOS and Xcode command-line tools like instruments
|
351
354
|
and simctl.
|
352
355
|
test_files: []
|
353
|
-
has_rdoc:
|