appium_lib 14.0.0 → 15.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rubocop.yml +4 -2
- data/CHANGELOG.md +15 -1
- data/Rakefile +8 -0
- data/Thorfile +0 -8
- data/appium_lib.gemspec +6 -6
- data/docs/w3c.md +5 -1
- data/lib/appium_lib/appium.rb +0 -2
- data/lib/appium_lib/common/device.rb +0 -24
- data/lib/appium_lib/driver.rb +3 -4
- data/lib/appium_lib/version.rb +2 -2
- data/release_notes.md +34 -0
- data/test/first_test.rb +29 -0
- metadata +31 -51
- data/docs/android_docs.md +0 -2679
- data/docs/ios_docs.md +0 -3321
- data/lib/appium_lib/common/multi_touch.rb +0 -198
- data/lib/appium_lib/common/touch_actions.rb +0 -76
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 796adeac9cf88dc053e753f5247424776c3fc76e7315faab0707a701b51626d1
|
4
|
+
data.tar.gz: 324af242f927a23024b497aa8ecbedd68dc83553473b2901e3a6dfc2da01849a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '065363852318ced51ba308b9bc4b9708b66650d746e840f672721e58ae8a32351fd4be26df57f78794ba23f5de98ed22af77fceafeccf38cb80b3efc7545ab2e'
|
7
|
+
data.tar.gz: c03a4fd8b6966e60fd65fc33202a07a6fd4220f57eac3220acc82e8d33ec3562ccfa520ffc18996ac7758ba5019939320393733ad48c543371816788f67c36c2
|
@@ -11,7 +11,7 @@ jobs:
|
|
11
11
|
strategy:
|
12
12
|
fail-fast: false
|
13
13
|
matrix:
|
14
|
-
ruby: [3.0, 3.1, 3.2]
|
14
|
+
ruby: [3.0, 3.1, 3.2, 3.3]
|
15
15
|
|
16
16
|
runs-on: ubuntu-latest
|
17
17
|
|
@@ -23,5 +23,7 @@ jobs:
|
|
23
23
|
ruby-version: ${{ matrix.ruby }}
|
24
24
|
- name: Install dependencies
|
25
25
|
run: bundle install
|
26
|
-
- name: Run
|
26
|
+
- name: Run rubocop
|
27
27
|
run: bundle exec rake rubocop
|
28
|
+
- name: Run tests
|
29
|
+
run: bundle exec rake test
|
data/CHANGELOG.md
CHANGED
@@ -4,10 +4,24 @@ Commit based release not is [release_notes.md](./release_notes.md)
|
|
4
4
|
Release tags are https://github.com/appium/ruby_lib/releases .
|
5
5
|
|
6
6
|
|
7
|
+
## [15.1.0] - 2024-05-19
|
8
|
+
- Use appium_lib_core 9.0.0
|
9
|
+
|
10
|
+
## 15.0.1 - 2024-04-26
|
11
|
+
- Bump release module (internal only)
|
12
|
+
|
13
|
+
## 15.0.0 - 2024-04-11
|
14
|
+
- Breaking
|
15
|
+
- Use appium_lib_core 8.0.0 and up
|
16
|
+
- Please refer to [the diff](https://github.com/appium/ruby_lib_core/blob/master/CHANGELOG.md#800---2024-03-08) about the details.
|
17
|
+
- Remove `Appium::MultiTouch` and `Appium::TouchAction`
|
18
|
+
- `swipe` could use `mobile:swipe`, or w3c actions. Multi-touch actions such as zoom/pinch can be written in w3c actions.
|
19
|
+
- Please use [w3c actions](https://github.com/appium/ruby_lib/blob/master/docs/w3c.md) instead. Several resources such as [test code in ruby_lib_core](https://github.com/appium/ruby_lib_core/blob/master/test/functional/common_w3c_actions.rb) also would help to check the syntax.
|
20
|
+
|
7
21
|
## 14.0.0 - 2024-01-25
|
8
22
|
- Use appium_lib_core 7.4.0 and up
|
9
23
|
- Removed deprecated `export_session` and `export_session_path`
|
10
|
-
- Please get the session id via `driver.session_id`
|
24
|
+
- Please get the session id via `driver.session_id` instead
|
11
25
|
|
12
26
|
## 13.0.2 - 2024-01-25
|
13
27
|
- Allow up to appium_lib_core 7.3
|
data/Rakefile
CHANGED
@@ -14,6 +14,7 @@
|
|
14
14
|
|
15
15
|
require 'bundler/gem_tasks'
|
16
16
|
require 'rubocop/rake_task'
|
17
|
+
require 'rake/testtask'
|
17
18
|
|
18
19
|
desc 'Execute RuboCop static code analysis'
|
19
20
|
RuboCop::RakeTask.new(:rubocop) do |t|
|
@@ -21,3 +22,10 @@ RuboCop::RakeTask.new(:rubocop) do |t|
|
|
21
22
|
t.options = %w(-D)
|
22
23
|
t.fail_on_error = true
|
23
24
|
end
|
25
|
+
|
26
|
+
desc('Run all unit tests in test directory')
|
27
|
+
Rake::TestTask.new(:test) do |t|
|
28
|
+
t.libs << 'test'
|
29
|
+
t.libs << 'lib'
|
30
|
+
t.test_files = FileList[ENV['TESTS'] ? ENV['TESTS'].split(',') : 'test/**/*_test.rb']
|
31
|
+
end
|
data/Thorfile
CHANGED
@@ -4,12 +4,4 @@ Appium::Thor::Config.set do
|
|
4
4
|
gem_name 'appium_lib'
|
5
5
|
github_name 'ruby_lib'
|
6
6
|
version_file 'lib/appium_lib/version.rb'
|
7
|
-
docs_block do
|
8
|
-
common_globs = %w(/lib/appium_lib/*.rb /lib/appium_lib/device/*.rb /lib/appium_lib/common/**/*.rb)
|
9
|
-
android_globs = common_globs + %w(/lib/appium_lib/android/**/*.rb)
|
10
|
-
ios_globs = common_globs + %w(/lib/appium_lib/ios/**/*.rb)
|
11
|
-
|
12
|
-
run 'docs/android_docs.md', globs(android_globs)
|
13
|
-
run 'docs/ios_docs.md', globs(ios_globs)
|
14
|
-
end
|
15
7
|
end
|
data/appium_lib.gemspec
CHANGED
@@ -5,7 +5,6 @@ Gem::Specification.new do |s|
|
|
5
5
|
|
6
6
|
s.name = 'appium_lib'
|
7
7
|
s.version = Appium::VERSION
|
8
|
-
s.date = Appium::DATE
|
9
8
|
s.license = 'Apache-2.0'
|
10
9
|
s.description = 'Ruby library for Appium.'
|
11
10
|
s.summary = 'Ruby library for Appium'
|
@@ -14,19 +13,20 @@ Gem::Specification.new do |s|
|
|
14
13
|
s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
|
15
14
|
s.require_paths = ['lib']
|
16
15
|
|
17
|
-
s.add_runtime_dependency 'appium_lib_core', '
|
16
|
+
s.add_runtime_dependency 'appium_lib_core', '~> 9.0'
|
18
17
|
s.add_runtime_dependency 'nokogiri', '~> 1.8', '>= 1.8.1'
|
19
18
|
s.add_runtime_dependency 'tomlrb', '>= 1.1', '< 3.0'
|
20
19
|
|
21
|
-
s.add_development_dependency 'appium_thor', '~>
|
20
|
+
s.add_development_dependency 'appium_thor', '~> 2.0'
|
22
21
|
s.add_development_dependency 'fakefs', '~> 2.5.0'
|
23
22
|
s.add_development_dependency 'hashdiff', '~> 1.1.0'
|
24
|
-
s.add_development_dependency '
|
23
|
+
s.add_development_dependency 'minitest', '~> 5.0'
|
24
|
+
s.add_development_dependency 'minitest-reporters', '~> 1.1'
|
25
25
|
s.add_development_dependency 'pry'
|
26
26
|
s.add_development_dependency 'rake', '~> 13.0'
|
27
|
-
s.add_development_dependency 'rubocop', '1.
|
28
|
-
s.add_development_dependency 'spec', '~> 5.3', '>= 5.3.4'
|
27
|
+
s.add_development_dependency 'rubocop', '1.63.5'
|
29
28
|
s.add_development_dependency 'yard', '~> 0.9.11'
|
30
29
|
|
31
30
|
s.files = `git ls-files`.split("\n").reject { |v| v.match(/\A^(ios_tests|android_tests|grid|test_apps)\/.+/) }
|
31
|
+
s.metadata['rubygems_mfa_required'] = 'true'
|
32
32
|
end
|
data/docs/w3c.md
CHANGED
@@ -11,11 +11,15 @@ dialect #=> :w3c
|
|
11
11
|
el = find_element(:name, 'Pickers')
|
12
12
|
driver.action.click(el).perform #=> work
|
13
13
|
|
14
|
+
|
15
|
+
# Scroll/Swipe
|
14
16
|
driver.action
|
15
17
|
.move_to_location(500, 500).pointer_down(:left)
|
16
18
|
.move_to_location(0, 700)
|
17
19
|
.release.perform
|
18
20
|
|
21
|
+
|
22
|
+
# Zoom in
|
19
23
|
# multiple action chains
|
20
24
|
f1 = driver.action.add_pointer_input(:touch, 'finger1')
|
21
25
|
f1.create_pointer_move(duration: 1, x: 200, y: 500,
|
@@ -48,4 +52,4 @@ driver.perform_actions [f1, f2]
|
|
48
52
|
## Limitations
|
49
53
|
- WebDriverAgent support only `touch` as a `pointer type`.
|
50
54
|
- By default, [ruby_lib_core](https://github.com/appium/ruby_lib_core/blob/ab5d7c5ed31f318a9395e5aeafe1d0d655d3cff4/lib/appium_lib_core/common/base/w3c_bridge.rb#L26) generate `touch` based actions.
|
51
|
-
- About `pointer type` => [W3C](https://www.w3.org/TR/webdriver/#perform-actions) and [Simple WD Spec](https://github.com/jlipps/simple-wd-spec#perform-actions)
|
55
|
+
- About `pointer type` => [W3C](https://www.w3.org/TR/webdriver/#perform-actions) and [Simple WD Spec](https://github.com/jlipps/simple-wd-spec#perform-actions)
|
data/lib/appium_lib/appium.rb
CHANGED
@@ -26,8 +26,6 @@ require_relative 'sauce_labs'
|
|
26
26
|
require_relative 'common/wait'
|
27
27
|
require_relative 'common/log'
|
28
28
|
require_relative 'common/helper'
|
29
|
-
require_relative 'common/multi_touch'
|
30
|
-
require_relative 'common/touch_actions'
|
31
29
|
require_relative 'common/http_client'
|
32
30
|
require_relative 'common/device'
|
33
31
|
require_relative 'common/command'
|
@@ -15,29 +15,5 @@
|
|
15
15
|
module Appium
|
16
16
|
module Device
|
17
17
|
extend Forwardable
|
18
|
-
|
19
|
-
class << self
|
20
|
-
def extended(_mod)
|
21
|
-
add_touch_actions
|
22
|
-
end
|
23
|
-
|
24
|
-
private
|
25
|
-
|
26
|
-
def add_touch_actions
|
27
|
-
actions = Appium::TouchAction::COMPLEX_ACTIONS
|
28
|
-
actions.each do |method|
|
29
|
-
delegate_from_appium_driver(method, Appium::TouchAction)
|
30
|
-
end
|
31
|
-
|
32
|
-
# To keep compatibility
|
33
|
-
# pinch and zoom are defined in Appium::MultiTouch.
|
34
|
-
delegate_from_appium_driver(:pinch, Appium::MultiTouch)
|
35
|
-
delegate_from_appium_driver(:zoom, Appium::MultiTouch)
|
36
|
-
end
|
37
|
-
|
38
|
-
def delegate_from_appium_driver(method, delegation_target)
|
39
|
-
def_delegator delegation_target, method
|
40
|
-
end
|
41
|
-
end # class << self
|
42
18
|
end # module Device
|
43
19
|
end # module Appium
|
data/lib/appium_lib/driver.rb
CHANGED
@@ -321,7 +321,7 @@ module Appium
|
|
321
321
|
# An entry point to chain W3C actions
|
322
322
|
# Read https://www.rubydoc.info/github/appium/ruby_lib_core/Appium/Core/Base/Bridge/W3C#action-instance_method
|
323
323
|
#
|
324
|
-
# @return [
|
324
|
+
# @return [Selenium::WebDriver::PointerActions]
|
325
325
|
#
|
326
326
|
# @example
|
327
327
|
#
|
@@ -358,7 +358,7 @@ module Appium
|
|
358
358
|
def platform_version
|
359
359
|
return [] if @driver.nil?
|
360
360
|
|
361
|
-
p_version = @driver.capabilities['platformVersion']
|
361
|
+
p_version = @driver.capabilities['platformVersion']
|
362
362
|
p_version.split('.').map(&:to_i)
|
363
363
|
end
|
364
364
|
|
@@ -779,8 +779,7 @@ module Appium
|
|
779
779
|
|
780
780
|
# @since Appium 1.16.0
|
781
781
|
#
|
782
|
-
# Logs a custom event. The event is available via {::Appium::Core::Events#get}
|
783
|
-
# <code>driver.session_capabilities['events']</code> with <code>eventTimings</code> capabilities.
|
782
|
+
# Logs a custom event. The event is available via {::Appium::Core::Events#get}.
|
784
783
|
#
|
785
784
|
# @param [String] vendor The vendor prefix for the event
|
786
785
|
# @param [String] event The name of event
|
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 = '
|
18
|
-
DATE = '2024-
|
17
|
+
VERSION = '15.1.0' unless defined? ::Appium::VERSION
|
18
|
+
DATE = '2024-05-19' unless defined? ::Appium::DATE
|
19
19
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,37 @@
|
|
1
|
+
#### v15.1.0 2024-05-19
|
2
|
+
|
3
|
+
- [b1534cc](https://github.com/appium/ruby_lib/commit/b1534cc8e781e37f9632fa1cbaa6e2422b6a768d) Release 15.1.0
|
4
|
+
- [f6cc482](https://github.com/appium/ruby_lib/commit/f6cc482e6bcf75cd4388911355700e31da74b578) chore: tweak deps
|
5
|
+
- [c034ec5](https://github.com/appium/ruby_lib/commit/c034ec5cb74e442db6db4cfc8365a43c903cbbfc) feat: update ruby lib core to v9 (#1030)
|
6
|
+
- [50bca8f](https://github.com/appium/ruby_lib/commit/50bca8f8acd2c4c144684cd33dd0ea9787a40bf5) chore: Update rubocop requirement from = 1.63.4 to = 1.63.5 (#1028)
|
7
|
+
- [415b3c6](https://github.com/appium/ruby_lib/commit/415b3c6b52e28f3b43cdd95a0684b1e9aadc0ae8) chore: Update rubocop requirement from = 1.63.3 to = 1.63.4 (#1027)
|
8
|
+
- [7461e6a](https://github.com/appium/ruby_lib/commit/7461e6a44569245b6dbd1b352f3ff76503bb1bbb) docs: remove no longer used docs
|
9
|
+
- [66e323c](https://github.com/appium/ruby_lib/commit/66e323c08dbc9616366e55ebf3835530549edf37) chore: remove unused docs_block
|
10
|
+
|
11
|
+
|
12
|
+
#### v15.0.1 2024-04-26
|
13
|
+
|
14
|
+
- [3ab38a7](https://github.com/appium/ruby_lib/commit/3ab38a7339bf077dd85d9b700f08ddfe2ca608e5) Release 15.0.1
|
15
|
+
- [720dfdd](https://github.com/appium/ruby_lib/commit/720dfdd31f0feacf5926f668ff15e521920e360c) chore: bump thor and remove unused posix
|
16
|
+
- [c869327](https://github.com/appium/ruby_lib/commit/c869327d50d2046a2c45e3a360b8667e006f9f56) chore: Update rubocop requirement from = 1.63.2 to = 1.63.3 (#1026)
|
17
|
+
- [6543765](https://github.com/appium/ruby_lib/commit/65437658a89b234fbc431246266a383a0988009a) chore: Update rubocop requirement from = 1.63.1 to = 1.63.2 (#1025)
|
18
|
+
- [2b428b5](https://github.com/appium/ruby_lib/commit/2b428b5e714e83ee283bce993fd3eba61827a287) chore: Update rubocop requirement from = 1.63.0 to = 1.63.1 (#1024)
|
19
|
+
|
20
|
+
|
21
|
+
#### v15.0.0 2024-04-11
|
22
|
+
|
23
|
+
- [203a605](https://github.com/appium/ruby_lib/commit/203a6052db42039c89cd000f245f1534379bc86b) Release 15.0.0
|
24
|
+
- [7ab9f44](https://github.com/appium/ruby_lib/commit/7ab9f442ee9a9d22ad021316171e6824628eeb99) chore: Update rubocop requirement from = 1.62.1 to = 1.63.0 (#1023)
|
25
|
+
- [ad20d82](https://github.com/appium/ruby_lib/commit/ad20d828e8124f37c3ab3055c744c2c76c74f563) ci: add 3.3
|
26
|
+
- [df9752c](https://github.com/appium/ruby_lib/commit/df9752c5176db395e7a427a77c4755293ff75cee) feat: remove "spec" deps (#1022)
|
27
|
+
- [c5a7216](https://github.com/appium/ruby_lib/commit/c5a7216c005bb819ff7bc3fe313e7400777b9587) test: add empty test code (#1021)
|
28
|
+
- [c450c20](https://github.com/appium/ruby_lib/commit/c450c20bae801e2f9f9ce66a9df2e352a614f73f) feat: bump ruby lib core v8 (#1018)
|
29
|
+
- [9d40e0e](https://github.com/appium/ruby_lib/commit/9d40e0e2c2cbe571fd788c12565b3cb3d92f16a4) chore: Update rubocop requirement from = 1.62.0 to = 1.62.1 (#1020)
|
30
|
+
- [98861af](https://github.com/appium/ruby_lib/commit/98861af3d779ce288937344a63aec7cbefed9db1) chore: Update rubocop requirement from = 1.61.0 to = 1.62.0 (#1017)
|
31
|
+
- [1b385bc](https://github.com/appium/ruby_lib/commit/1b385bc2bab3f45d38a4f58e8c79ddbbe58d5596) chore: Update rubocop requirement from = 1.60.2 to = 1.61.0 (#1016)
|
32
|
+
- [612d944](https://github.com/appium/ruby_lib/commit/612d944fc60b202d3e24c7e052004cef1b69c8d0) chore: Update rubocop requirement from = 1.60.1 to = 1.60.2 (#1013)
|
33
|
+
|
34
|
+
|
1
35
|
#### v14.0.0 2024-01-25
|
2
36
|
|
3
37
|
- [50cf980](https://github.com/appium/ruby_lib/commit/50cf980b570acd7d2d95ea64d1d1b0225f96c73b) Release 14.0.0
|
data/test/first_test.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require 'minitest/autorun'
|
16
|
+
require 'minitest/reporters'
|
17
|
+
require 'minitest'
|
18
|
+
|
19
|
+
begin
|
20
|
+
Minitest::Reporters.use! [Minitest::Reporters::ProgressReporter.new]
|
21
|
+
rescue Errno::ENOENT
|
22
|
+
# Ignore since Minitest::Reporters::JUnitReporter.new fails in deleting files, sometimes
|
23
|
+
end
|
24
|
+
|
25
|
+
class SampleTest < Minitest::Test
|
26
|
+
def test_test
|
27
|
+
assert(true)
|
28
|
+
end
|
29
|
+
end
|
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:
|
4
|
+
version: 15.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- code@bootstraponline.com
|
@@ -9,28 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-05-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: appium_lib_core
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
19
|
-
- !ruby/object:Gem::Version
|
20
|
-
version: 7.4.0
|
21
|
-
- - "<"
|
18
|
+
- - "~>"
|
22
19
|
- !ruby/object:Gem::Version
|
23
|
-
version: '
|
20
|
+
version: '9.0'
|
24
21
|
type: :runtime
|
25
22
|
prerelease: false
|
26
23
|
version_requirements: !ruby/object:Gem::Requirement
|
27
24
|
requirements:
|
28
|
-
- - "
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: 7.4.0
|
31
|
-
- - "<"
|
25
|
+
- - "~>"
|
32
26
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
27
|
+
version: '9.0'
|
34
28
|
- !ruby/object:Gem::Dependency
|
35
29
|
name: nokogiri
|
36
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -77,20 +71,14 @@ dependencies:
|
|
77
71
|
requirements:
|
78
72
|
- - "~>"
|
79
73
|
- !ruby/object:Gem::Version
|
80
|
-
version: '
|
81
|
-
- - ">="
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: 1.1.4
|
74
|
+
version: '2.0'
|
84
75
|
type: :development
|
85
76
|
prerelease: false
|
86
77
|
version_requirements: !ruby/object:Gem::Requirement
|
87
78
|
requirements:
|
88
79
|
- - "~>"
|
89
80
|
- !ruby/object:Gem::Version
|
90
|
-
version: '
|
91
|
-
- - ">="
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version: 1.1.4
|
81
|
+
version: '2.0'
|
94
82
|
- !ruby/object:Gem::Dependency
|
95
83
|
name: fakefs
|
96
84
|
requirement: !ruby/object:Gem::Requirement
|
@@ -120,19 +108,33 @@ dependencies:
|
|
120
108
|
- !ruby/object:Gem::Version
|
121
109
|
version: 1.1.0
|
122
110
|
- !ruby/object:Gem::Dependency
|
123
|
-
name:
|
111
|
+
name: minitest
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - "~>"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '5.0'
|
117
|
+
type: :development
|
118
|
+
prerelease: false
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - "~>"
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '5.0'
|
124
|
+
- !ruby/object:Gem::Dependency
|
125
|
+
name: minitest-reporters
|
124
126
|
requirement: !ruby/object:Gem::Requirement
|
125
127
|
requirements:
|
126
128
|
- - "~>"
|
127
129
|
- !ruby/object:Gem::Version
|
128
|
-
version: '
|
130
|
+
version: '1.1'
|
129
131
|
type: :development
|
130
132
|
prerelease: false
|
131
133
|
version_requirements: !ruby/object:Gem::Requirement
|
132
134
|
requirements:
|
133
135
|
- - "~>"
|
134
136
|
- !ruby/object:Gem::Version
|
135
|
-
version: '
|
137
|
+
version: '1.1'
|
136
138
|
- !ruby/object:Gem::Dependency
|
137
139
|
name: pry
|
138
140
|
requirement: !ruby/object:Gem::Requirement
|
@@ -167,34 +169,14 @@ dependencies:
|
|
167
169
|
requirements:
|
168
170
|
- - '='
|
169
171
|
- !ruby/object:Gem::Version
|
170
|
-
version: 1.
|
172
|
+
version: 1.63.5
|
171
173
|
type: :development
|
172
174
|
prerelease: false
|
173
175
|
version_requirements: !ruby/object:Gem::Requirement
|
174
176
|
requirements:
|
175
177
|
- - '='
|
176
178
|
- !ruby/object:Gem::Version
|
177
|
-
version: 1.
|
178
|
-
- !ruby/object:Gem::Dependency
|
179
|
-
name: spec
|
180
|
-
requirement: !ruby/object:Gem::Requirement
|
181
|
-
requirements:
|
182
|
-
- - "~>"
|
183
|
-
- !ruby/object:Gem::Version
|
184
|
-
version: '5.3'
|
185
|
-
- - ">="
|
186
|
-
- !ruby/object:Gem::Version
|
187
|
-
version: 5.3.4
|
188
|
-
type: :development
|
189
|
-
prerelease: false
|
190
|
-
version_requirements: !ruby/object:Gem::Requirement
|
191
|
-
requirements:
|
192
|
-
- - "~>"
|
193
|
-
- !ruby/object:Gem::Version
|
194
|
-
version: '5.3'
|
195
|
-
- - ">="
|
196
|
-
- !ruby/object:Gem::Version
|
197
|
-
version: 5.3.4
|
179
|
+
version: 1.63.5
|
198
180
|
- !ruby/object:Gem::Dependency
|
199
181
|
name: yard
|
200
182
|
requirement: !ruby/object:Gem::Requirement
|
@@ -231,10 +213,8 @@ files:
|
|
231
213
|
- Thorfile
|
232
214
|
- appium_lib.gemspec
|
233
215
|
- contributing.md
|
234
|
-
- docs/android_docs.md
|
235
216
|
- docs/android_uiautomator.md
|
236
217
|
- docs/docs.md
|
237
|
-
- docs/ios_docs.md
|
238
218
|
- docs/ios_xcuitest.md
|
239
219
|
- docs/parallel.md
|
240
220
|
- docs/w3c.md
|
@@ -265,8 +245,6 @@ files:
|
|
265
245
|
- lib/appium_lib/common/helper.rb
|
266
246
|
- lib/appium_lib/common/http_client.rb
|
267
247
|
- lib/appium_lib/common/log.rb
|
268
|
-
- lib/appium_lib/common/multi_touch.rb
|
269
|
-
- lib/appium_lib/common/touch_actions.rb
|
270
248
|
- lib/appium_lib/common/wait.rb
|
271
249
|
- lib/appium_lib/driver.rb
|
272
250
|
- lib/appium_lib/ios/common/errors.rb
|
@@ -296,10 +274,12 @@ files:
|
|
296
274
|
- lib/appium_lib/version.rb
|
297
275
|
- readme.md
|
298
276
|
- release_notes.md
|
277
|
+
- test/first_test.rb
|
299
278
|
homepage: https://github.com/appium/ruby_lib
|
300
279
|
licenses:
|
301
280
|
- Apache-2.0
|
302
|
-
metadata:
|
281
|
+
metadata:
|
282
|
+
rubygems_mfa_required: 'true'
|
303
283
|
post_install_message:
|
304
284
|
rdoc_options: []
|
305
285
|
require_paths:
|
@@ -315,7 +295,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
315
295
|
- !ruby/object:Gem::Version
|
316
296
|
version: '0'
|
317
297
|
requirements: []
|
318
|
-
rubygems_version: 3.
|
298
|
+
rubygems_version: 3.5.9
|
319
299
|
signing_key:
|
320
300
|
specification_version: 4
|
321
301
|
summary: Ruby library for Appium
|