appium_lib_core 5.0.0.rc8 → 5.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/codeql-analysis.yml +70 -0
- data/.rubocop.yml +6 -0
- data/CHANGELOG.md +20 -1
- data/README.md +1 -1
- data/appium_lib_core.gemspec +2 -5
- data/bin/console +0 -4
- data/lib/appium_lib_core/common/base/bridge.rb +2 -2
- data/lib/appium_lib_core/common/base/driver.rb +17 -15
- data/lib/appium_lib_core/common/device/app_management.rb +2 -14
- data/lib/appium_lib_core/version.rb +2 -2
- data/release_notes.md +48 -0
- metadata +9 -50
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 768ad5928203c9268387eb20883faad159028c468d19e9ec7bf71feaa54bb5ed
|
4
|
+
data.tar.gz: 3cd338540cadeb66f809b3f58a27c3b20831cebf252fbc2333bc59af08ce1942
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e355b1a2e682da136efd316739854c53394feda4a374df7c9e013ae8d9a9d3aca20b7bfc6a16523f7ea0aac175fb7413847494e3ced07ae11dfccbb67853b12
|
7
|
+
data.tar.gz: 331bd0140602b5ca769ce78f2eb65cbd969be4ea1482911a60a206e11e1453a1fc3b88b66131eca1285720818f95bb752422002b0ff6ce20d41aa01a807db516
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# For most projects, this workflow file will not need changing; you simply need
|
2
|
+
# to commit it to your repository.
|
3
|
+
#
|
4
|
+
# You may wish to alter this file to override the set of languages analyzed,
|
5
|
+
# or to provide custom queries or build logic.
|
6
|
+
#
|
7
|
+
# ******** NOTE ********
|
8
|
+
# We have attempted to detect the languages in your repository. Please check
|
9
|
+
# the `language` matrix defined below to confirm you have the correct set of
|
10
|
+
# supported CodeQL languages.
|
11
|
+
#
|
12
|
+
name: "CodeQL"
|
13
|
+
|
14
|
+
on:
|
15
|
+
push:
|
16
|
+
branches: [ master ]
|
17
|
+
pull_request:
|
18
|
+
# The branches below must be a subset of the branches above
|
19
|
+
branches: [ master ]
|
20
|
+
schedule:
|
21
|
+
- cron: '39 12 * * 0'
|
22
|
+
|
23
|
+
jobs:
|
24
|
+
analyze:
|
25
|
+
name: Analyze
|
26
|
+
runs-on: ubuntu-latest
|
27
|
+
permissions:
|
28
|
+
actions: read
|
29
|
+
contents: read
|
30
|
+
security-events: write
|
31
|
+
|
32
|
+
strategy:
|
33
|
+
fail-fast: false
|
34
|
+
matrix:
|
35
|
+
language: [ 'ruby' ]
|
36
|
+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
37
|
+
# Learn more about CodeQL language support at https://git.io/codeql-language-support
|
38
|
+
|
39
|
+
steps:
|
40
|
+
- name: Checkout repository
|
41
|
+
uses: actions/checkout@v2
|
42
|
+
|
43
|
+
# Initializes the CodeQL tools for scanning.
|
44
|
+
- name: Initialize CodeQL
|
45
|
+
uses: github/codeql-action/init@v1
|
46
|
+
with:
|
47
|
+
languages: ${{ matrix.language }}
|
48
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
49
|
+
# By default, queries listed here will override any specified in a config file.
|
50
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
51
|
+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
52
|
+
|
53
|
+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
54
|
+
# If this step fails, then you should remove it and run the build manually (see below)
|
55
|
+
- name: Autobuild
|
56
|
+
uses: github/codeql-action/autobuild@v1
|
57
|
+
|
58
|
+
# ℹ️ Command-line programs to run using the OS shell.
|
59
|
+
# 📚 https://git.io/JvXDl
|
60
|
+
|
61
|
+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
62
|
+
# and modify them (or add more) to build your code if your project
|
63
|
+
# uses a compiled language
|
64
|
+
|
65
|
+
#- run: |
|
66
|
+
# make bootstrap
|
67
|
+
# make release
|
68
|
+
|
69
|
+
- name: Perform CodeQL Analysis
|
70
|
+
uses: github/codeql-action/analyze@v1
|
data/.rubocop.yml
CHANGED
@@ -58,6 +58,8 @@ Style/KeywordParametersOrder:
|
|
58
58
|
Enabled: false
|
59
59
|
Gemspec/DateAssignment:
|
60
60
|
Enabled: true
|
61
|
+
Gemspec/RequireMFA:
|
62
|
+
Enabled: true
|
61
63
|
Layout/LineEndStringConcatenationIndentation:
|
62
64
|
Enabled: true
|
63
65
|
Layout/SpaceBeforeBrackets:
|
@@ -104,6 +106,8 @@ Lint/UnexpectedBlockArity:
|
|
104
106
|
Enabled: true
|
105
107
|
Lint/UnmodifiedReduceAccumulator:
|
106
108
|
Enabled: true
|
109
|
+
Lint/UselessRuby2Keywords:
|
110
|
+
Enabled: true
|
107
111
|
Security/IoMethods:
|
108
112
|
Enabled: true
|
109
113
|
Style/ArgumentsForwarding:
|
@@ -144,3 +148,5 @@ Style/StringChars:
|
|
144
148
|
Enabled: true
|
145
149
|
Style/SwapValues:
|
146
150
|
Enabled: true
|
151
|
+
Style/OpenStructUse:
|
152
|
+
Enabled: true
|
data/CHANGELOG.md
CHANGED
@@ -10,7 +10,26 @@ Read `release_notes.md` for commit level details.
|
|
10
10
|
|
11
11
|
### Deprecations
|
12
12
|
|
13
|
-
## [5.0.
|
13
|
+
## [5.0.3] - 2021-12-13
|
14
|
+
|
15
|
+
### Enhancements
|
16
|
+
- Can add more arguments in `install_app`
|
17
|
+
- e.g. Add `timeoutMs` for XCUITest driver as `@driver.install_app("/path/to/test.ipa", timeoutMs: 20000)`
|
18
|
+
|
19
|
+
### Bug fixes
|
20
|
+
- (internal) Allow to access to `bridge` attribute in `driver` instance for appium_flutter_finder
|
21
|
+
|
22
|
+
## [5.0.2] - 2021-12-01
|
23
|
+
|
24
|
+
### Bug fixes
|
25
|
+
- (internal) Fix firstMatch format in a new session creation
|
26
|
+
|
27
|
+
## [5.0.1] - 2021-11-23
|
28
|
+
|
29
|
+
### Enhancements
|
30
|
+
- Relaxed version restriction of selenium-webdriver
|
31
|
+
|
32
|
+
## [5.0.0] - 2021-11-05
|
14
33
|
|
15
34
|
### Enhancements
|
16
35
|
|
data/README.md
CHANGED
@@ -15,7 +15,7 @@ This library wraps [selenium-webdriver](https://github.com/SeleniumHQ/selenium/w
|
|
15
15
|
|
16
16
|
# Migration from v4 to v5
|
17
17
|
|
18
|
-
Please read `[5.0.0]` section in CHANGELOG.md
|
18
|
+
Please read [`[5.0.0]`](CHANGELOG.md#500---2021-11-05) section in [CHANGELOG](CHANGELOG.md)
|
19
19
|
|
20
20
|
# Related library
|
21
21
|
- https://github.com/appium/ruby_lib
|
data/appium_lib_core.gemspec
CHANGED
@@ -22,19 +22,16 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
23
|
spec.require_paths = ['lib']
|
24
24
|
|
25
|
-
spec.add_runtime_dependency 'selenium-webdriver', '~> 4.0
|
25
|
+
spec.add_runtime_dependency 'selenium-webdriver', '~> 4.0'
|
26
26
|
spec.add_runtime_dependency 'faye-websocket', '~> 0.11.0'
|
27
27
|
|
28
|
-
spec.add_development_dependency 'bundler', '>= 1.14'
|
29
28
|
spec.add_development_dependency 'rake', '~> 13.0'
|
30
29
|
spec.add_development_dependency 'yard', '~> 0.9.11'
|
31
30
|
spec.add_development_dependency 'minitest', '~> 5.0'
|
32
31
|
spec.add_development_dependency 'minitest-reporters', '~> 1.1'
|
33
32
|
spec.add_development_dependency 'webmock', '~> 3.14.0'
|
34
|
-
spec.add_development_dependency 'rubocop', '1.
|
33
|
+
spec.add_development_dependency 'rubocop', '1.23.0'
|
35
34
|
spec.add_development_dependency 'appium_thor', '~> 1.0'
|
36
|
-
spec.add_development_dependency 'pry'
|
37
|
-
spec.add_development_dependency 'pry-byebug'
|
38
35
|
spec.add_development_dependency 'parallel_tests'
|
39
36
|
spec.add_development_dependency 'simplecov'
|
40
37
|
end
|
data/bin/console
CHANGED
@@ -6,9 +6,5 @@ require "appium_lib_core"
|
|
6
6
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
7
|
# with your gem easier. You can also use a different console, if you like.
|
8
8
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
9
|
require "irb"
|
14
10
|
IRB.start(__FILE__)
|
@@ -77,8 +77,8 @@ module Appium
|
|
77
77
|
def create_session(capabilities)
|
78
78
|
@available_commands = ::Appium::Core::Commands::COMMANDS.dup
|
79
79
|
|
80
|
-
|
81
|
-
response = execute(:new_session, {}, { capabilities: { alwaysMatch:
|
80
|
+
always_match = add_appium_prefix(capabilities)
|
81
|
+
response = execute(:new_session, {}, { capabilities: { alwaysMatch: always_match, firstMatch: [{}] } })
|
82
82
|
|
83
83
|
@session_id = response['sessionId']
|
84
84
|
raise ::Selenium::WebDriver::Error::WebDriverError, 'no sessionId in returned payload' unless @session_id
|
@@ -41,12 +41,12 @@ module Appium
|
|
41
41
|
|
42
42
|
include ::Appium::Core::Waitable
|
43
43
|
|
44
|
-
private
|
45
|
-
|
46
44
|
# Private API.
|
47
45
|
# Do not use this for general use. Used by flutter driver to get bridge for creating a new element
|
48
46
|
attr_reader :bridge
|
49
47
|
|
48
|
+
private
|
49
|
+
|
50
50
|
def initialize(bridge: nil, listener: nil, **opts)
|
51
51
|
# For ::Appium::Core::Waitable
|
52
52
|
@wait_timeout = opts.delete(:wait_timeout)
|
@@ -609,7 +609,9 @@ module Appium
|
|
609
609
|
@bridge.background_app(duration)
|
610
610
|
end
|
611
611
|
|
612
|
-
# Install the given app onto the device
|
612
|
+
# Install the given app onto the device.
|
613
|
+
# Each options can be snake-case or camel-case. Snake-cases will be converted to camel-case
|
614
|
+
# as options value.
|
613
615
|
#
|
614
616
|
# @param [String] path The absolute local path or remote http URL to an .ipa or .apk file,
|
615
617
|
# or a .zip containing one of these.
|
@@ -623,26 +625,26 @@ module Appium
|
|
623
625
|
# @param [Boolean] grant_permissions Only for Android. whether to automatically grant application permissions
|
624
626
|
# on Android 6+ after the installation completes. +false+ by default
|
625
627
|
#
|
628
|
+
# Other parameters such as https://github.com/appium/appium-xcuitest-driver#mobile-installapp also can be set.
|
629
|
+
# Then, arguments in snake case will be camel case as its request parameters.
|
630
|
+
#
|
626
631
|
# @example
|
627
632
|
#
|
628
633
|
# @driver.install_app("/path/to/test.apk")
|
629
634
|
# @driver.install_app("/path/to/test.apk", replace: true, timeout: 20000, allow_test_packages: true,
|
630
635
|
# use_sdcard: false, grant_permissions: false)
|
636
|
+
# @driver.install_app("/path/to/test.ipa", timeoutMs: 20000)
|
631
637
|
#
|
632
|
-
def install_app(path,
|
633
|
-
|
634
|
-
|
635
|
-
allow_test_packages: nil,
|
636
|
-
use_sdcard: nil,
|
637
|
-
grant_permissions: nil)
|
638
|
-
@bridge.install_app(path,
|
639
|
-
replace: replace,
|
640
|
-
timeout: timeout,
|
641
|
-
allow_test_packages: allow_test_packages,
|
642
|
-
use_sdcard: use_sdcard,
|
643
|
-
grant_permissions: grant_permissions)
|
638
|
+
def install_app(path, **options)
|
639
|
+
options = options.transform_keys { |key| key.to_s.gsub(/_./) { |v| v[1].upcase } } unless options.nil?
|
640
|
+
@bridge.install_app(path, options)
|
644
641
|
end
|
645
642
|
|
643
|
+
# def capitalize(s)
|
644
|
+
# chars =
|
645
|
+
# chars[1:].map(&:capitalize).join
|
646
|
+
# end
|
647
|
+
|
646
648
|
# @param [Strong] app_id BundleId for iOS or package name for Android
|
647
649
|
# @param [Boolean] keep_data Only for Android. Whether to keep application data and caches after it is uninstalled.
|
648
650
|
# +false+ by default
|
@@ -39,21 +39,9 @@ module Appium
|
|
39
39
|
raise NotImplementedError
|
40
40
|
end
|
41
41
|
|
42
|
-
def install_app(path,
|
43
|
-
replace: nil,
|
44
|
-
timeout: nil,
|
45
|
-
allow_test_packages: nil,
|
46
|
-
use_sdcard: nil,
|
47
|
-
grant_permissions: nil)
|
42
|
+
def install_app(path, options = {})
|
48
43
|
args = { appPath: path }
|
49
|
-
|
50
|
-
args[:options] = {} if options?(replace, timeout, allow_test_packages, use_sdcard, grant_permissions)
|
51
|
-
|
52
|
-
args[:options][:replace] = replace unless replace.nil?
|
53
|
-
args[:options][:timeout] = timeout unless timeout.nil?
|
54
|
-
args[:options][:allowTestPackages] = allow_test_packages unless allow_test_packages.nil?
|
55
|
-
args[:options][:useSdcard] = use_sdcard unless use_sdcard.nil?
|
56
|
-
args[:options][:grantPermissions] = grant_permissions unless grant_permissions.nil?
|
44
|
+
args[:options] = options unless options.empty?
|
57
45
|
|
58
46
|
execute :install_app, {}, args
|
59
47
|
end
|
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
module Appium
|
16
16
|
module Core
|
17
|
-
VERSION = '5.0.
|
18
|
-
DATE = '2021-
|
17
|
+
VERSION = '5.0.3' unless defined? ::Appium::Core::VERSION
|
18
|
+
DATE = '2021-12-13' unless defined? ::Appium::Core::DATE
|
19
19
|
end
|
20
20
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,51 @@
|
|
1
|
+
#### v5.0.3 2021-12-13
|
2
|
+
|
3
|
+
- [7cee1b3](https://github.com/appium/ruby_lib_core/commit/7cee1b31647c453a546c450c35c37649462eed05) Release 5.0.3
|
4
|
+
- [21bd5a5](https://github.com/appium/ruby_lib_core/commit/21bd5a5186dc25a9523ad8e7ec6275edbc79988e) fix: make bridge attribute non-private for flutter finder (#362)
|
5
|
+
- [78e432e](https://github.com/appium/ruby_lib_core/commit/78e432e92571adfd80fe3ad4405010825e766fc5) chore: add changelog
|
6
|
+
- [0b3c45c](https://github.com/appium/ruby_lib_core/commit/0b3c45cd6a059fd493bfcbd55ebe437291cbcdab) feat: do not restrict options in install_app (#361)
|
7
|
+
|
8
|
+
|
9
|
+
#### v5.0.2 2021-12-01
|
10
|
+
|
11
|
+
- [3cc0fb1](https://github.com/appium/ruby_lib_core/commit/3cc0fb129a0ec74367c716941adefae75fe6a6d6) Release 5.0.2
|
12
|
+
- [a87c63a](https://github.com/appium/ruby_lib_core/commit/a87c63a5e00ca826eb89cee3b4874c4bbb787980) chore: tweak naming
|
13
|
+
- [36e50b2](https://github.com/appium/ruby_lib_core/commit/36e50b28c04a5afda8d25f6b855d35fda5ff6b2b) fix: sends [{}] (#360)
|
14
|
+
|
15
|
+
|
16
|
+
#### v5.0.1 2021-11-23
|
17
|
+
|
18
|
+
- [f17ba52](https://github.com/appium/ruby_lib_core/commit/f17ba524608a6e715923331bb9bfff73e0709bcb) Release 5.0.1
|
19
|
+
- [ee9cbc4](https://github.com/appium/ruby_lib_core/commit/ee9cbc42e0d3289bb4ab9b403d45867472241e97) feat: relax selenium webdriver version (#357)
|
20
|
+
- [4c2948b](https://github.com/appium/ruby_lib_core/commit/4c2948b113106e01c8009555434b4d0fe0ae99f3) chore(deps-dev): update rubocop requirement from = 1.22.3 to = 1.23.0 (#354)
|
21
|
+
- [abe2316](https://github.com/appium/ruby_lib_core/commit/abe2316b5a01a27bc657daeb41524afca4187c18) ci: add codeql-analysis (#355)
|
22
|
+
- [1c87fc9](https://github.com/appium/ruby_lib_core/commit/1c87fc9b2e1ac7bd869ec61a0dc045b12d5ed887) docs: add link to changelog in migration guide
|
23
|
+
|
24
|
+
|
25
|
+
#### v5.0.0 2021-11-05
|
26
|
+
|
27
|
+
- [e2d1e2d](https://github.com/appium/ruby_lib_core/commit/e2d1e2da59b10f84b3c8ecafba7be6ab27223b73) Release 5.0.0
|
28
|
+
- [ac4c312](https://github.com/appium/ruby_lib_core/commit/ac4c312b7e6b314a5e23463d930fb6a957ec3e8f) chore: cleanup dev dependencies
|
29
|
+
- [0c84f30](https://github.com/appium/ruby_lib_core/commit/0c84f30a1623445576df70de54d8c46e40948d18) bump rc to 8
|
30
|
+
- [8c42356](https://github.com/appium/ruby_lib_core/commit/8c423566315b47cf99150a38be09b059aab4d358) chore: add deprecated in app management (#353)
|
31
|
+
- [5ad23bc](https://github.com/appium/ruby_lib_core/commit/5ad23bc0826c7afa36a95066b65aeb00f1742ad8) chore: use ::Selenium::WebDriver::Interactions.pointer as example (#352)
|
32
|
+
- [a77a6eb](https://github.com/appium/ruby_lib_core/commit/a77a6ebd87b1116254c4900cebd900a3d106940e) chore: create links
|
33
|
+
- [bc13166](https://github.com/appium/ruby_lib_core/commit/bc13166ac7f2e65d94acdf3cff1841863f4b59fe) chore: tweak the order of changelog
|
34
|
+
- [a6fa1b9](https://github.com/appium/ruby_lib_core/commit/a6fa1b9a68584915646ff11fef4cc70a750d5d79) chore: add deprecation mark for windows (#351)
|
35
|
+
- [c7286ed](https://github.com/appium/ruby_lib_core/commit/c7286eda8bfbaa49154b12d024187fd384171d4e) chore(deps-dev): update rubocop requirement from = 1.22.2 to = 1.22.3 (#350)
|
36
|
+
- [d30dff4](https://github.com/appium/ruby_lib_core/commit/d30dff483dec6d0fec67b01f1a28a8c6612e32e6) bump version to 5.0.0.rc7
|
37
|
+
- [7f0fe5a](https://github.com/appium/ruby_lib_core/commit/7f0fe5aedf43c9f81636b8db7efd505e93850f00) chore: add deprecations for TouchAction and Multitouch (#348)
|
38
|
+
- [9ed1202](https://github.com/appium/ruby_lib_core/commit/9ed1202a7979500a4744ceb340827b16137eb188) chore: remove selendroid stuff (#349)
|
39
|
+
- [fc37c9f](https://github.com/appium/ruby_lib_core/commit/fc37c9f1841fcb7efb5c23cf9200a13d0d35bdcf) chore: pass wait_timeout and wait_interval (#346)
|
40
|
+
- [1da3e75](https://github.com/appium/ruby_lib_core/commit/1da3e753907ac431d925a1489a50af3fa406638f) chore: bump to rc6
|
41
|
+
- [61ebace](https://github.com/appium/ruby_lib_core/commit/61ebaceaf2d4a6450356a0a51ffe67cab0b33287) feat: add a few new wait syntaxes (#344)
|
42
|
+
- [d6f73b1](https://github.com/appium/ruby_lib_core/commit/d6f73b131fd6c8da96b45edfaa6c6db9a85b383a) chore(deps-dev): update rubocop requirement from = 1.22.1 to = 1.22.2 (#345)
|
43
|
+
- [0d69af1](https://github.com/appium/ruby_lib_core/commit/0d69af1b93deefd343c910833557a39ceaef59da) chore: cleanup a bit (#342)
|
44
|
+
- [115465e](https://github.com/appium/ruby_lib_core/commit/115465e2b73e65dd3777e698d98f1cdaa161f3eb) chore: append example in wait
|
45
|
+
- [ad519ee](https://github.com/appium/ruby_lib_core/commit/ad519ee70ba7b7122107b8b2d986ff1523b654d0) chore: update rubocop (#341)
|
46
|
+
- [e13b0ef](https://github.com/appium/ruby_lib_core/commit/e13b0efae6b964cc6b0e7b0ed10816eaf6e007d4) feat: selenium v4 base (#315)
|
47
|
+
|
48
|
+
|
1
49
|
#### v4.7.1 2021-09-26
|
2
50
|
|
3
51
|
- [cdd8906](https://github.com/appium/ruby_lib_core/commit/cdd890662585aa5051912d20d90ec3c3866ad8b1) Release 4.7.1
|
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: 5.0.
|
4
|
+
version: 5.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kazuaki MATSUO
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: selenium-webdriver
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 4.0
|
19
|
+
version: '4.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 4.0
|
26
|
+
version: '4.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: faye-websocket
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -38,20 +38,6 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 0.11.0
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: bundler
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '1.14'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '1.14'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: rake
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -128,14 +114,14 @@ dependencies:
|
|
128
114
|
requirements:
|
129
115
|
- - '='
|
130
116
|
- !ruby/object:Gem::Version
|
131
|
-
version: 1.
|
117
|
+
version: 1.23.0
|
132
118
|
type: :development
|
133
119
|
prerelease: false
|
134
120
|
version_requirements: !ruby/object:Gem::Requirement
|
135
121
|
requirements:
|
136
122
|
- - '='
|
137
123
|
- !ruby/object:Gem::Version
|
138
|
-
version: 1.
|
124
|
+
version: 1.23.0
|
139
125
|
- !ruby/object:Gem::Dependency
|
140
126
|
name: appium_thor
|
141
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -150,34 +136,6 @@ dependencies:
|
|
150
136
|
- - "~>"
|
151
137
|
- !ruby/object:Gem::Version
|
152
138
|
version: '1.0'
|
153
|
-
- !ruby/object:Gem::Dependency
|
154
|
-
name: pry
|
155
|
-
requirement: !ruby/object:Gem::Requirement
|
156
|
-
requirements:
|
157
|
-
- - ">="
|
158
|
-
- !ruby/object:Gem::Version
|
159
|
-
version: '0'
|
160
|
-
type: :development
|
161
|
-
prerelease: false
|
162
|
-
version_requirements: !ruby/object:Gem::Requirement
|
163
|
-
requirements:
|
164
|
-
- - ">="
|
165
|
-
- !ruby/object:Gem::Version
|
166
|
-
version: '0'
|
167
|
-
- !ruby/object:Gem::Dependency
|
168
|
-
name: pry-byebug
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
170
|
-
requirements:
|
171
|
-
- - ">="
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: '0'
|
174
|
-
type: :development
|
175
|
-
prerelease: false
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - ">="
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: '0'
|
181
139
|
- !ruby/object:Gem::Dependency
|
182
140
|
name: parallel_tests
|
183
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -217,6 +175,7 @@ files:
|
|
217
175
|
- ".github/contributing.md"
|
218
176
|
- ".github/dependabot.yml"
|
219
177
|
- ".github/issue_template.md"
|
178
|
+
- ".github/workflows/codeql-analysis.yml"
|
220
179
|
- ".github/workflows/unittest.yml"
|
221
180
|
- ".gitignore"
|
222
181
|
- ".rubocop.yml"
|
@@ -336,9 +295,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
336
295
|
version: '2.6'
|
337
296
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
338
297
|
requirements:
|
339
|
-
- - "
|
298
|
+
- - ">="
|
340
299
|
- !ruby/object:Gem::Version
|
341
|
-
version:
|
300
|
+
version: '0'
|
342
301
|
requirements: []
|
343
302
|
rubygems_version: 3.2.15
|
344
303
|
signing_key:
|