appium_flutter_finder 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -1
- data/lib/appium_flutter_finder/version.rb +1 -1
- data/lib/appium_flutter_finder.rb +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d428cab53cc9eeb666873c2aaf6ad58dc8229a3f0dd3c46fa3f5f64e3aba732
|
4
|
+
data.tar.gz: fdc5e539b8cef85f482392f66e12c65c231767010939724174851b7c4c927243
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 923dc028f8093cce5e0a10b4985b301ae58d542810f2e1c5e2937eeba6cc65d6a64f746bdb4ac5b0b40a3840b195c026ced40439bd8cf2f23bb8d37b32cb2b2a
|
7
|
+
data.tar.gz: 3f615985de70fb243b6f35ffca748329ec48d1fa77f613b33007e97cb54ba09c54f3ddc2d180932563edf18eaa90ec299a445abf10ac5bd08506579cd3f0f2aa
|
data/README.md
CHANGED
@@ -43,8 +43,10 @@ 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.6.0
|
47
|
+
- Fix type of `match_root` and `first_match_only` in `by_ancestor` and `by_descendant`
|
46
48
|
- 0.5.0
|
47
|
-
|
49
|
+
- Support appium_lib_core version to v7 as well. The appium_lib_core requires Ruby v3.
|
48
50
|
- 0.4.2
|
49
51
|
- Relax the dependency version restriction
|
50
52
|
- 0.4.1
|
@@ -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.to_s,
|
28
|
+
first_match_only: first_match_only.to_s
|
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.to_s,
|
38
|
+
first_match_only: first_match_only.to_s
|
39
39
|
)
|
40
40
|
end
|
41
41
|
|
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.6.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: 2023-
|
11
|
+
date: 2023-10-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appium_lib_core
|
@@ -105,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
105
105
|
- !ruby/object:Gem::Version
|
106
106
|
version: '0'
|
107
107
|
requirements: []
|
108
|
-
rubygems_version: 3.
|
108
|
+
rubygems_version: 3.4.10
|
109
109
|
signing_key:
|
110
110
|
specification_version: 4
|
111
111
|
summary: Finder for appium-flutter-driver
|