calabash-cucumber 0.10.0.pre8 → 0.10.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/bin/calabash-ios-sim.rb +4 -4
- data/dylibs/libCalabashDyn.dylib +0 -0
- data/dylibs/libCalabashDynSim.dylib +0 -0
- data/lib/calabash-cucumber/launcher.rb +1 -2
- data/lib/calabash-cucumber/version.rb +2 -2
- data/staticlib/calabash.framework.zip +0 -0
- data/staticlib/libFrankCalabash.a +0 -0
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c85d9115ce76a776bd6f092ae9096cdea9d0880
|
4
|
+
data.tar.gz: 926a2acd95744bac3039630088b4348f13a074f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21f0e1cf1cbaa40681a878d22e772c45e5027679d9d11965a35c3ad77b3647867301fd897d25476e8f4bd13cabae593855e1a239998eb56b07c92be53665bd04
|
7
|
+
data.tar.gz: 5958dc93df0f60224aa85be1fa87c0ceb1b0ec79834ed88fa1cd86950445432fa26c2b039ac252748ca995b8ab30dfb78583d1672c096b5f088562ec2a0da94d
|
data/bin/calabash-ios-sim.rb
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
require 'calabash-cucumber/utils/simulator_accessibility'
|
2
2
|
require 'calabash-cucumber/utils/logging'
|
3
|
+
require 'run_loop'
|
3
4
|
|
4
5
|
include Calabash::Cucumber::Logging
|
5
6
|
include Calabash::Cucumber::SimulatorAccessibility
|
6
7
|
|
7
8
|
def quit_sim
|
8
|
-
|
9
|
-
quit_simulator
|
9
|
+
RunLoop::SimControl.new.quit_sim
|
10
10
|
end
|
11
11
|
|
12
12
|
def calabash_sim_reset
|
13
|
-
|
13
|
+
RunLoop::SimControl.new.reset_sim_content_and_settings
|
14
14
|
end
|
15
15
|
|
16
16
|
def calabash_sim_accessibility
|
17
|
-
|
17
|
+
RunLoop::SimControl.new.enable_accessibility_on_sims
|
18
18
|
end
|
19
19
|
|
20
20
|
def calabash_sim_location(args)
|
data/dylibs/libCalabashDyn.dylib
CHANGED
Binary file
|
Binary file
|
@@ -554,8 +554,7 @@ class Calabash::Cucumber::Launcher
|
|
554
554
|
end
|
555
555
|
|
556
556
|
if run_with_instruments?(args)
|
557
|
-
|
558
|
-
uia_strategy = args[:uia_strategy] || :preferences
|
557
|
+
args[:uia_strategy] ||= :preferences
|
559
558
|
self.run_loop = new_run_loop(args)
|
560
559
|
self.actions= Calabash::Cucumber::InstrumentsActions.new
|
561
560
|
else
|
@@ -5,12 +5,12 @@ module Calabash
|
|
5
5
|
|
6
6
|
# @!visibility public
|
7
7
|
# The Calabash iOS gem version.
|
8
|
-
VERSION = '0.10.0
|
8
|
+
VERSION = '0.10.0'
|
9
9
|
|
10
10
|
# @!visibility public
|
11
11
|
# The minimum required version of the calabash.framework or, for Xamarin
|
12
12
|
# users, the Calabash component.
|
13
|
-
MIN_SERVER_VERSION = '0.10.0
|
13
|
+
MIN_SERVER_VERSION = '0.10.0'
|
14
14
|
|
15
15
|
# @!visibility private
|
16
16
|
def self.const_missing(const_name)
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: calabash-cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.0
|
4
|
+
version: 0.10.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: 2014-
|
11
|
+
date: 2014-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cucumber
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.8
|
47
|
+
version: '1.8'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.8
|
54
|
+
version: '1.8'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: edn
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -168,16 +168,16 @@ dependencies:
|
|
168
168
|
name: run_loop
|
169
169
|
requirement: !ruby/object:Gem::Requirement
|
170
170
|
requirements:
|
171
|
-
- - "
|
171
|
+
- - "~>"
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version: 1.0.0
|
173
|
+
version: 1.0.0
|
174
174
|
type: :runtime
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
|
-
- - "
|
178
|
+
- - "~>"
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version: 1.0.0
|
180
|
+
version: 1.0.0
|
181
181
|
- !ruby/object:Gem::Dependency
|
182
182
|
name: rake
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
@@ -424,9 +424,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
424
424
|
version: '1.9'
|
425
425
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
426
426
|
requirements:
|
427
|
-
- - "
|
427
|
+
- - ">="
|
428
428
|
- !ruby/object:Gem::Version
|
429
|
-
version:
|
429
|
+
version: '0'
|
430
430
|
requirements: []
|
431
431
|
rubyforge_project:
|
432
432
|
rubygems_version: 2.4.1
|