appium_lib 9.9.0 → 9.9.1
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/CHANGELOG.md +8 -1
- data/docs/android_docs.md +174 -186
- data/docs/ios_docs.md +232 -244
- data/lib/appium_lib/driver.rb +6 -17
- data/lib/appium_lib/version.rb +2 -2
- data/release_notes.md +6 -0
- metadata +2 -2
data/lib/appium_lib/driver.rb
CHANGED
@@ -6,28 +6,17 @@ if defined?(Minitest::VERSION)
|
|
6
6
|
class Runnable
|
7
7
|
end
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
# To switch load class
|
12
|
-
def self.left_greater_than_or_equal_to_right?(left, right)
|
13
|
-
left.split('.').zip(right.split('.')).each do |value|
|
14
|
-
diff = value[0].to_i - value[1].to_i
|
15
|
-
return true if diff > 0
|
16
|
-
return false if diff < 0
|
9
|
+
begin
|
10
|
+
class Test < Runnable
|
17
11
|
end
|
18
|
-
|
19
|
-
end
|
20
|
-
|
21
|
-
if left_greater_than_or_equal_to_right?(VERSION, '5.11.0')
|
12
|
+
rescue TypeError => te
|
22
13
|
# http://docs.seattlerb.org/minitest/History_rdoc.html#label-5.11.0+-2F+2018-01-01
|
14
|
+
# for 5.11.0/5.11.1
|
23
15
|
# `Minitest::Test` became a subclass of `Minitest::Result`
|
16
|
+
raise TypeError, te.message unless te.message == 'superclass mismatch for class Test'
|
17
|
+
|
24
18
|
class Test < Result
|
25
19
|
end
|
26
|
-
else
|
27
|
-
class Test < Runnable
|
28
|
-
end
|
29
|
-
end
|
30
|
-
class Spec < Test
|
31
20
|
end
|
32
21
|
end
|
33
22
|
end
|
data/lib/appium_lib/version.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module Appium
|
2
2
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
3
|
-
VERSION = '9.9.
|
4
|
-
DATE = '2018-
|
3
|
+
VERSION = '9.9.1'.freeze unless defined? ::Appium::VERSION
|
4
|
+
DATE = '2018-02-02'.freeze unless defined? ::Appium::DATE
|
5
5
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
#### v9.9.0 2018-01-29
|
2
|
+
|
3
|
+
- [913c6b5](https://github.com/appium/ruby_lib/commit/913c6b5098ebdd6659d949121b42f4a38d8c34d4) [Release 9 9 0 (#756)](https://github.com/appium/ruby_lib/issues/756)
|
4
|
+
- [b8d73ca](https://github.com/appium/ruby_lib/commit/b8d73cafcc429e04f06b891d688513a9622c730a) [fix test and add the latest grid (#754)](https://github.com/appium/ruby_lib/issues/754)
|
5
|
+
|
6
|
+
|
1
7
|
#### v9.8.5 2018-01-26
|
2
8
|
|
3
9
|
- [228c5dd](https://github.com/appium/ruby_lib/commit/228c5dd39189b61e4b541852d740fb5d67c8dfbd) [Release 9 8 5 (#753)](https://github.com/appium/ruby_lib/issues/753)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appium_lib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.9.
|
4
|
+
version: 9.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- code@bootstraponline.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appium_lib_core
|