appium_lib 10.3.0 → 10.3.1

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.
@@ -53,7 +53,7 @@ module Appium
53
53
  # @return [Element] the element scrolled to
54
54
  def scroll_to(text, scrollable_index = 0)
55
55
  text = %("#{text}")
56
- rid = resource_id(text, "new UiSelector().resourceId(#{text});")
56
+ rid = resource_id(text, "new UiSelector().resourceId(#{text})")
57
57
  args = rid.empty? ? ["new UiSelector().textContains(#{text})", "new UiSelector().descriptionContains(#{text})"] : [rid]
58
58
  args.each_with_index do |arg, index|
59
59
  begin
@@ -71,7 +71,7 @@ module Appium
71
71
  # @return [Element] the element scrolled to
72
72
  def scroll_to_exact(text, scrollable_index = 0)
73
73
  text = %("#{text}")
74
- rid = resource_id(text, "new UiSelector().resourceId(#{text});")
74
+ rid = resource_id(text, "new UiSelector().resourceId(#{text})")
75
75
  args = rid.empty? ? ["new UiSelector().text(#{text})", "new UiSelector().description(#{text})"] : [rid]
76
76
  args.each_with_index do |arg, index|
77
77
  begin
@@ -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 = '10.3.0' unless defined? ::Appium::VERSION
18
- DATE = '2019-03-31' unless defined? ::Appium::DATE
17
+ VERSION = '10.3.1' unless defined? ::Appium::VERSION
18
+ DATE = '2019-04-11' unless defined? ::Appium::DATE
19
19
  end
@@ -1,3 +1,9 @@
1
+ #### v10.3.1 2019-04-11
2
+
3
+ - [ef89749](https://github.com/appium/ruby_lib/commit/ef89749d25c7044fe27fa4b7c1adfd011b60bba1) Release 10.3.1
4
+ - [d90f149](https://github.com/appium/ruby_lib/commit/d90f1499f6c7f5c8222f7915d60c7a7218d43949) remove ';' to avoid 'Unclosed paren in expression' (#859)
5
+
6
+
1
7
  #### v10.3.0 2019-03-31
2
8
 
3
9
  - [499e824](https://github.com/appium/ruby_lib/commit/499e824668f63958c2fe047b76841612f74d2c1c) Release 10.3.0
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: 10.3.0
4
+ version: 10.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - code@bootstraponline.com
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-03-31 00:00:00.000000000 Z
12
+ date: 2019-04-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: appium_lib_core