appium_lib 8.2.0 → 8.2.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/docs/android_docs.md +2418 -4
- data/docs/ios_docs.md +247 -194
- data/lib/appium_lib/common/version.rb +2 -2
- data/lib/appium_lib/device/touch_actions.rb +1 -1
- data/lib/appium_lib/driver.rb +4 -4
- data/release_notes.md +16 -0
- metadata +2 -2
@@ -1,5 +1,5 @@
|
|
1
1
|
module Appium
|
2
2
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
3
|
-
VERSION = '8.2.
|
4
|
-
DATE = '2016-11-
|
3
|
+
VERSION = '8.2.1' unless defined? ::Appium::VERSION
|
4
|
+
DATE = '2016-11-29' unless defined? ::Appium::DATE
|
5
5
|
end
|
data/lib/appium_lib/driver.rb
CHANGED
@@ -50,7 +50,7 @@ module Minitest
|
|
50
50
|
end
|
51
51
|
|
52
52
|
module Appium
|
53
|
-
# Load
|
53
|
+
# Load arbitrary text (toml format)
|
54
54
|
#
|
55
55
|
# ```
|
56
56
|
# [caps]
|
@@ -102,9 +102,9 @@ module Appium
|
|
102
102
|
alias_method :load_appium_txt, :load_settings
|
103
103
|
end
|
104
104
|
|
105
|
-
# @param
|
106
|
-
# @param file_paths
|
107
|
-
# @return list of require files as an array, nil if require doesn't exist
|
105
|
+
# @param [String] base_dir parent directory of loaded appium.txt (toml)
|
106
|
+
# @param [String] file_paths
|
107
|
+
# @return [Array] list of require files as an array, nil if require doesn't exist
|
108
108
|
def self.expand_required_files(base_dir, file_paths)
|
109
109
|
# ensure files are absolute
|
110
110
|
Array(file_paths).map! do |f|
|
data/release_notes.md
CHANGED
@@ -1,13 +1,29 @@
|
|
1
|
+
#### v8.2.1 2016-11-29
|
2
|
+
|
3
|
+
- [ad91ee4](https://github.com/appium/ruby_lib/commit/ad91ee47a96bf7a19b6f784dc760ac70b8788e5a) Release 8.2.1
|
4
|
+
- [62488a5](https://github.com/appium/ruby_lib/commit/62488a551ee2545096a2f4256a41c39a82d506fc) bugfix_swipe_with_deltas (#405)
|
5
|
+
- [fdeec0d](https://github.com/appium/ruby_lib/commit/fdeec0de9ac198d77d361c1fb18fc64679d98ac2) Add docs (#404)
|
6
|
+
- [63ce8fa](https://github.com/appium/ruby_lib/commit/63ce8fa4eafffe0607b4fc11d86fbdab01a8f7bb) Release 8.2.0 (#403)
|
7
|
+
- [4535ec9](https://github.com/appium/ruby_lib/commit/4535ec91f435255ae31b4c4fea9d96e5405d79f5) Release 8.2.0
|
8
|
+
- [afcc91e](https://github.com/appium/ruby_lib/commit/afcc91eabea63ec93f70f22b1095f7ce7022af76) Release 8.1.0
|
9
|
+
|
10
|
+
|
1
11
|
#### v8.2.0 2016-11-26
|
2
12
|
|
3
13
|
- [4535ec9](https://github.com/appium/ruby_lib/commit/4535ec91f435255ae31b4c4fea9d96e5405d79f5) Release 8.2.0
|
14
|
+
- [afcc91e](https://github.com/appium/ruby_lib/commit/afcc91eabea63ec93f70f22b1095f7ce7022af76) Release 8.1.0
|
4
15
|
- [8a08021](https://github.com/appium/ruby_lib/commit/8a080213dbe4843f50b6acfbe80628209bfd143d) add endpoint for handling IME in remote bridge (#400)
|
5
16
|
- [222cd47](https://github.com/appium/ruby_lib/commit/222cd47f69ba24b82a122734b0a136e5d6aed330) Allow to name toml files differently than appium.txt, fixes #280 (#397)
|
6
17
|
- [d3a9235](https://github.com/appium/ruby_lib/commit/d3a9235767d6ba770246afac0e62ac58da0eb4b0) update release note and documentation (#396)
|
18
|
+
- [b5ac170](https://github.com/appium/ruby_lib/commit/b5ac170f1269e273a01a51429c5e45d2f3e989b1) Release 810 (#394)
|
19
|
+
- [95d3a65](https://github.com/appium/ruby_lib/commit/95d3a6535472559590c4d043e887d15acc445a1a) Release 8.1.0
|
20
|
+
- [4b5d817](https://github.com/appium/ruby_lib/commit/4b5d81752565f02645e301555e4be78b0235daf5) Release 8.1.0
|
21
|
+
|
7
22
|
|
8
23
|
#### v8.1.0 2016-11-18
|
9
24
|
|
10
25
|
- [95d3a65](https://github.com/appium/ruby_lib/commit/95d3a6535472559590c4d043e887d15acc445a1a) Release 8.1.0
|
26
|
+
- [4b5d817](https://github.com/appium/ruby_lib/commit/4b5d81752565f02645e301555e4be78b0235daf5) Release 8.1.0
|
11
27
|
- [6c38ca5](https://github.com/appium/ruby_lib/commit/6c38ca5276342ade6168eb9080424a03608a1b3e) replace end_ to delta_ because end_ is deprecated in #380 (#392)
|
12
28
|
- [09654ab](https://github.com/appium/ruby_lib/commit/09654ab9dbc69a31eff7e7bd426db985da09e3b8) Add EventListener to Driver (#389)
|
13
29
|
- [2d8fc5f](https://github.com/appium/ruby_lib/commit/2d8fc5ff7acce9417847e66772b59fc691c1dbaa) Added touch id endpoint (#384)
|
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: 8.2.
|
4
|
+
version: 8.2.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: 2016-11-
|
11
|
+
date: 2016-11-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: selenium-webdriver
|