appium_flutter_finder 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b984346a462b9d110ac47d7180c4d7acf913ab828e88b436d02e633af493efbf
4
- data.tar.gz: 518826877b83afeebf3862286b658fcccbb5141c5d63c8477189ed137c8d8cab
3
+ metadata.gz: fddd985882669ff4a5fb12abd164382209a11c400d5fb6438ee7554a73c15930
4
+ data.tar.gz: dba0e768b43ed4b4cf9d5083acee322856351aa21d1742f254c3b26f245e1639
5
5
  SHA512:
6
- metadata.gz: f115465181a10a7a5dc2b075fc7880ef1e6437c41db25cd62d8b6d850ea31545a5a2261205edd7def9b2c0e25026fee7a2b608a807ba87fd71b7581010694292
7
- data.tar.gz: 70c32e67ac6c3397b2c9f7843f5cce2c71c96352235dcbb3fd4e95fcce8ca188531b129a9f2a5bcd9ca6c0ae083d62434c3cbab192783f1c70df6cc8274d0e06
6
+ metadata.gz: 9d129a265bfb926a4820272f3abe83979c7929ceba1c7eb707d63ba7c05ab86c1bc716eb8eb9327983e81485b703329cfe0a3a19eff5517be53d10f3bd566e3d
7
+ data.tar.gz: f365ba4a6071352160e88f707baaf52a324d535b4b81a8eac6fbf871e78e598dabfa69c7be6ab409d8dbeab9d443c4088e784239e13fc2a382b4d71c45778e61
data/README.md CHANGED
@@ -43,7 +43,7 @@ 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.3
46
+ - 0.3, 0.3.1
47
47
  - Add `first_match_only` option in `by_ancestor` and `by_descendant`
48
48
  - 0.2.1
49
49
  - Fix `by_ancestor` and `by_descendant`
@@ -1,7 +1,7 @@
1
1
  module Appium
2
2
  module Flutter
3
3
  module Finder
4
- VERSION = '0.3.0'.freeze
4
+ VERSION = '0.3.1'.freeze
5
5
  end
6
6
  end
7
7
  end
@@ -22,7 +22,8 @@ module Appium
22
22
  type: 'Ancestor',
23
23
  serialized_finder: serialized_finder,
24
24
  matching: matching,
25
- match_root: match_root
25
+ match_root: match_root,
26
+ first_match_only: first_match_only
26
27
  )
27
28
  end
28
29
 
@@ -31,7 +32,8 @@ module Appium
31
32
  type: 'Descendant',
32
33
  serialized_finder: serialized_finder,
33
34
  matching: matching,
34
- match_root: match_root
35
+ match_root: match_root,
36
+ first_match_only: first_match_only
35
37
  )
36
38
  end
37
39
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appium_flutter_finder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuaki Matsuo