appium_lib_core 3.0.4 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -2
- data/CHANGELOG.md +14 -1
- data/lib/appium_lib_core/driver.rb +3 -3
- data/lib/appium_lib_core/version.rb +2 -2
- data/release_notes.md +8 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b99e23248eb18bab61065888d154bdd8f919fb7119c303f56aa1d7e381cea2f
|
4
|
+
data.tar.gz: 151e93c374aeead4c6ac948dc0247426d3153ebcdb368066e063726f4c4b77f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d0a57d838dbccd400e06a71678e97f4ccad98b3ad49d1c139022f405da1c82e5f75e4da64be6e665337f48506d6bca04b4476d6a336899c13c9c9202510fda0
|
7
|
+
data.tar.gz: 0b5a97e95801d984a58e110afc5d2b736182bd878b5779472c039712233bb77c44b2566780678060df999d1cd382461212045a7fbd2c63b9e25c66c3713d16da
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -5,10 +5,23 @@ Read `release_notes.md` for commit level details.
|
|
5
5
|
## [Unreleased]
|
6
6
|
|
7
7
|
### Enhancements
|
8
|
-
-
|
8
|
+
- `tvOS` platform support
|
9
|
+
|
10
|
+
### Bug fixes
|
11
|
+
|
12
|
+
### Deprecations
|
13
|
+
|
14
|
+
## [3.1.0] - 2019-03-31
|
15
|
+
|
16
|
+
### Enhancements
|
17
|
+
- `tvOS` platform support
|
18
|
+
- `platformName: :tvos, automationName: :xcuitest` can work for iOS tvOS
|
19
|
+
- It requires Appium 1.13
|
9
20
|
|
10
21
|
### Bug fixes
|
11
22
|
|
23
|
+
### Deprecations
|
24
|
+
|
12
25
|
## [3.0.4] - 2019-03-24
|
13
26
|
|
14
27
|
### Enhancements
|
@@ -480,7 +480,7 @@ module Appium
|
|
480
480
|
else # default and UiAutomator
|
481
481
|
::Appium::Core::Android::Uiautomator1::Bridge.for(self)
|
482
482
|
end
|
483
|
-
when :ios
|
483
|
+
when :ios, :tvos
|
484
484
|
case automation_name
|
485
485
|
when :xcuitest
|
486
486
|
::Appium::Core::Ios::Xcuitest::Bridge.for(self)
|
@@ -584,14 +584,14 @@ module Appium
|
|
584
584
|
@device = @caps[:platformName]
|
585
585
|
return @device unless @device
|
586
586
|
|
587
|
-
@device = @device.is_a?(Symbol) ? @device : @device.downcase.strip.intern
|
587
|
+
@device = @device.is_a?(Symbol) ? @device.downcase : @device.downcase.strip.intern
|
588
588
|
end
|
589
589
|
|
590
590
|
# @private
|
591
591
|
def set_automation_name
|
592
592
|
@automation_name = @caps[:automationName] if @caps[:automationName]
|
593
593
|
@automation_name = if @automation_name
|
594
|
-
@automation_name.is_a?(Symbol) ? @automation_name : @automation_name.downcase.strip.intern
|
594
|
+
@automation_name.is_a?(Symbol) ? @automation_name.downcase : @automation_name.downcase.strip.intern
|
595
595
|
end
|
596
596
|
end
|
597
597
|
|
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
module Appium
|
16
16
|
module Core
|
17
|
-
VERSION = '3.0
|
18
|
-
DATE = '2019-03-
|
17
|
+
VERSION = '3.1.0' unless defined? ::Appium::Core::VERSION
|
18
|
+
DATE = '2019-03-31' unless defined? ::Appium::Core::DATE
|
19
19
|
end
|
20
20
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
#### v3.1.0 2019-03-31
|
2
|
+
|
3
|
+
- [b1944d8](https://github.com/appium/ruby_lib_core/commit/b1944d8c219fb3744cd337770baa7dd5c20dfd36) Release 3.1.0
|
4
|
+
- [289940b](https://github.com/appium/ruby_lib_core/commit/289940bf1b2da0b9cc6e34874fb950379515b2c5) Add tvos (#204)
|
5
|
+
- [a947a0a](https://github.com/appium/ruby_lib_core/commit/a947a0a7f4c26931a3cbe8e21084f7008ac63fd0) fix .nil? check
|
6
|
+
- [8a35c6e](https://github.com/appium/ruby_lib_core/commit/8a35c6ea99c78e41070a23579a1aae17b67399aa) fix test helper
|
7
|
+
|
8
|
+
|
1
9
|
#### v3.0.4 2019-03-24
|
2
10
|
|
3
11
|
- [c430740](https://github.com/appium/ruby_lib_core/commit/c43074089a9ecf18bdd3e5022530117fefcae8ab) Release 3.0.4
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appium_lib_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0
|
4
|
+
version: 3.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kazuaki MATSUO
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-03-
|
11
|
+
date: 2019-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: selenium-webdriver
|