appium_lib 12.1.1 → 12.1.2
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 +9 -0
- data/appium_lib.gemspec +1 -1
- data/docs/android_docs.md +205 -205
- data/docs/ios_docs.md +243 -243
- data/lib/appium_lib/appium.rb +12 -9
- data/lib/appium_lib/version.rb +2 -2
- data/release_notes.md +9 -0
- metadata +4 -4
data/lib/appium_lib/appium.rb
CHANGED
|
@@ -82,16 +82,19 @@ module Appium
|
|
|
82
82
|
|
|
83
83
|
# FIXME: Deprecated. Will remove when we remove 'Appium::Driver.absolute_app_path'
|
|
84
84
|
if data
|
|
85
|
-
if data[
|
|
86
|
-
data[
|
|
87
|
-
|
|
88
|
-
data[
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
elsif data[
|
|
92
|
-
data[
|
|
85
|
+
if data['caps']
|
|
86
|
+
if data['caps'][:app] && !data['caps'][:app].empty?
|
|
87
|
+
data['caps'][:app] = Appium::Driver.absolute_app_path data
|
|
88
|
+
elsif data['caps']['app'] && !data['caps']['app'].empty?
|
|
89
|
+
data['caps']['app'] = Appium::Driver.absolute_app_path data
|
|
90
|
+
end
|
|
91
|
+
elsif data[:caps]
|
|
92
|
+
if data[:caps][:app] && !data[:caps][:app].empty?
|
|
93
|
+
data[:caps][:app] = Appium::Driver.absolute_app_path data
|
|
94
|
+
elsif data[:caps]['app'] && !data[:caps]['app'].empty?
|
|
95
|
+
data[:caps]['app'] = Appium::Driver.absolute_app_path data
|
|
96
|
+
end
|
|
93
97
|
end
|
|
94
|
-
|
|
95
98
|
end
|
|
96
99
|
|
|
97
100
|
if data && data[:appium_lib] && data[:appium_lib][:require]
|
data/lib/appium_lib/version.rb
CHANGED
|
@@ -14,6 +14,6 @@
|
|
|
14
14
|
|
|
15
15
|
module Appium
|
|
16
16
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
|
17
|
-
VERSION = '12.1.
|
|
18
|
-
DATE = '2022-
|
|
17
|
+
VERSION = '12.1.2' unless defined? ::Appium::VERSION
|
|
18
|
+
DATE = '2022-11-13' unless defined? ::Appium::DATE
|
|
19
19
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
#### v12.1.2 2022-11-13
|
|
2
|
+
|
|
3
|
+
- [c3330bd](https://github.com/appium/ruby_lib/commit/c3330bd208d4aba2cdc616f5ca4ac23a3ec4790a) Release 12.1.2
|
|
4
|
+
- [40ca5c8](https://github.com/appium/ruby_lib/commit/40ca5c8a200638e145f71c27b320d19d1f3f63db) fix: non app in the caps by toml (#955)
|
|
5
|
+
- [b953b30](https://github.com/appium/ruby_lib/commit/b953b30c854232d11628ef894a8d6d43f8b59883) chore: Update rubocop requirement from = 1.37.1 to = 1.38.0 (#954)
|
|
6
|
+
- [a62597a](https://github.com/appium/ruby_lib/commit/a62597a5b0c7ff0a593e7fecaec66729b44ef78e) chore: Update rubocop requirement from = 1.37.0 to = 1.37.1 (#953)
|
|
7
|
+
- [049ac4e](https://github.com/appium/ruby_lib/commit/049ac4ec86399fe5406b6b0ca336ac0e2a8c2735) chore: Update rubocop requirement from = 1.36.0 to = 1.37.0 (#952)
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
#### v12.1.1 2022-10-19
|
|
2
11
|
|
|
3
12
|
- [83c89c1](https://github.com/appium/ruby_lib/commit/83c89c107ea0e030b7eae2d8ab664c38766df6ed) Release 12.1.1
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_lib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 12.1.
|
|
4
|
+
version: 12.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- code@bootstraponline.com
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2022-
|
|
12
|
+
date: 2022-11-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: appium_lib_core
|
|
@@ -167,14 +167,14 @@ dependencies:
|
|
|
167
167
|
requirements:
|
|
168
168
|
- - '='
|
|
169
169
|
- !ruby/object:Gem::Version
|
|
170
|
-
version: 1.
|
|
170
|
+
version: 1.38.0
|
|
171
171
|
type: :development
|
|
172
172
|
prerelease: false
|
|
173
173
|
version_requirements: !ruby/object:Gem::Requirement
|
|
174
174
|
requirements:
|
|
175
175
|
- - '='
|
|
176
176
|
- !ruby/object:Gem::Version
|
|
177
|
-
version: 1.
|
|
177
|
+
version: 1.38.0
|
|
178
178
|
- !ruby/object:Gem::Dependency
|
|
179
179
|
name: spec
|
|
180
180
|
requirement: !ruby/object:Gem::Requirement
|