appium_flutter_finder 0.6.0 → 0.7.0
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/README.md +2 -0
- data/appium_flutter_finder.gemspec +1 -1
- data/lib/appium_flutter_finder/version.rb +1 -1
- data/lib/appium_flutter_finder.rb +5 -5
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70c70de212a03e2865d05f543c1aef9d2e657921bb91d8d7fbbcf0c3c77fa374
|
|
4
|
+
data.tar.gz: c3437b1ed2419f4ec0e8f6084012a81f6be084dd450c4a96ec8a4f649ca7c256
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9a7e648f2ff7acf2bfe1abf53b55603e2f9b4c57adb9034a2f41f2b813dbd05c30e73805432650e213f82021d4900eef5bb8e626bcf9b8940b5d5ed642fc145
|
|
7
|
+
data.tar.gz: c60da973d8b1f46c7b5ddb51cb6baad2b6fbaa643445dd83b6e06029d42516ac75cda98c0bc32f93a0788180d6fbbcc4b91347907291676c1701ed2951bb3e89
|
data/README.md
CHANGED
|
@@ -43,6 +43,8 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
43
43
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
44
44
|
|
|
45
45
|
## Changelog
|
|
46
|
+
- 0.7.0
|
|
47
|
+
- Update the upper limit of ruby_lib_core
|
|
46
48
|
- 0.6.0
|
|
47
49
|
- Fix type of `match_root` and `first_match_only` in `by_ancestor` and `by_descendant`
|
|
48
50
|
- 0.5.0
|
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
24
24
|
spec.require_paths = ['lib']
|
|
25
25
|
|
|
26
|
-
spec.add_runtime_dependency 'appium_lib_core', '>= 5', '<
|
|
26
|
+
spec.add_runtime_dependency 'appium_lib_core', '>= 5', '< 9'
|
|
27
27
|
|
|
28
28
|
spec.add_development_dependency 'bundler', '>= 1.17'
|
|
29
29
|
spec.add_development_dependency 'minitest', '~> 5.0'
|
|
@@ -24,8 +24,8 @@ module Appium
|
|
|
24
24
|
type: 'Ancestor',
|
|
25
25
|
serialized_finder: serialized_finder,
|
|
26
26
|
matching: matching,
|
|
27
|
-
match_root: match_root
|
|
28
|
-
first_match_only: first_match_only
|
|
27
|
+
match_root: match_root,
|
|
28
|
+
first_match_only: first_match_only
|
|
29
29
|
)
|
|
30
30
|
end
|
|
31
31
|
|
|
@@ -34,8 +34,8 @@ module Appium
|
|
|
34
34
|
type: 'Descendant',
|
|
35
35
|
serialized_finder: serialized_finder,
|
|
36
36
|
matching: matching,
|
|
37
|
-
match_root: match_root
|
|
38
|
-
first_match_only: first_match_only
|
|
37
|
+
match_root: match_root,
|
|
38
|
+
first_match_only: first_match_only
|
|
39
39
|
)
|
|
40
40
|
end
|
|
41
41
|
|
|
@@ -90,7 +90,7 @@ module Appium
|
|
|
90
90
|
end
|
|
91
91
|
|
|
92
92
|
def by_ancestor_or_descendant(type:, serialized_finder:, matching:, match_root: false, first_match_only: false)
|
|
93
|
-
param = { finderType: type, matchRoot: match_root, firstMatchOnly: first_match_only}
|
|
93
|
+
param = { finderType: type, matchRoot: match_root.to_s, firstMatchOnly: first_match_only.to_s}
|
|
94
94
|
|
|
95
95
|
finder = begin
|
|
96
96
|
JSON.parse(Base64.decode64(serialized_finder))
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_flutter_finder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.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:
|
|
11
|
+
date: 2024-03-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: appium_lib_core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '5'
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '
|
|
22
|
+
version: '9'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '5'
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
32
|
+
version: '9'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: bundler
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|