appium_lib_core 9.4.0 → 9.5.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: a96d88aa179653568fc018b371ec9ab0204d10fad6228d42dcfe5c47941fcdac
4
- data.tar.gz: 4f9385c8c9ed097d678ec8b49cd2d0a0adb80fb82a64222f88ae0ba2519de0ab
3
+ metadata.gz: 65d659dce3980c45c306b4e6e2da0f9e089428b2de1bd881bf8a276f37e66900
4
+ data.tar.gz: 6d8e9e621366cef67cbd8e40ddbe8e1a79eb0e191cb5295bdd19e583dfc770fa
5
5
  SHA512:
6
- metadata.gz: c2424c1b0bf51c61e1f80d858202f0dfc173d75f1c4f5e3e0b00fcfdccba776745134e184a75c652880e838c01e79eba96920bcb6b566dc993764e28f56551a2
7
- data.tar.gz: 99c2de8b1c88b0f2779eb5dd96957bd0d101cec4af7f08a6ed22aa1e001eb0daf4edf3eaf1ab6fd40a05f070b580e0b256b5b33c2da1d35fd88304936a0b2ffc
6
+ metadata.gz: fbd3f5b0aa25fbb1ca35ef4002a1a49470a329bcab6d0ea12c01679cb3ee8834f41f33b702fa31caaa44e80236b8e6cd2d07c74c3dec54711a1b68a128243475
7
+ data.tar.gz: bbab7740cde1fd3995a1c55dcf46ff8452f1db4286b595995c0840a3a81947acc7245b97a1bd2667ca514b5b52466f1fbdb1b4e1ba9d58c00f9eef8d35903615
data/CHANGELOG.md CHANGED
@@ -10,6 +10,17 @@ Read `release_notes.md` for commit level details.
10
10
 
11
11
  ### Deprecations
12
12
 
13
+ ## [9.5.1] - 2025-01-29
14
+
15
+ ### Enhancements
16
+ - Added a module to search context to improve documentation
17
+
18
+
19
+ ## [9.5.0] - 2025-01-22
20
+
21
+ ### Deprecations
22
+ - Drop Ruby 3.0 by following selenium binding
23
+
13
24
  ## [9.4.0] - 2025-01-08
14
25
 
15
26
  ### Enhancements
data/Gemfile CHANGED
@@ -2,3 +2,14 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in appium_lib_core.gemspec
4
4
  gemspec
5
+
6
+ gem 'appium_thor', '~> 2.0'
7
+ gem 'minitest', '~> 5.0'
8
+ gem 'minitest-reporters', '~> 1.1'
9
+ gem 'parallel_tests'
10
+ gem 'rake', '~> 13.0'
11
+ gem 'rubocop', '1.71.0'
12
+ gem 'simplecov'
13
+ gem 'steep', '~> 1.9.3'
14
+ gem 'webmock', '~> 3.24.0'
15
+ gem 'yard', '~> 0.9.11'
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
  require 'appium_lib_core/version'
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.required_ruby_version = Gem::Requirement.new('>= 3.0')
6
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.1')
7
7
 
8
8
  spec.name = 'appium_lib_core'
9
9
  spec.version = Appium::Core::VERSION
@@ -21,18 +21,8 @@ Gem::Specification.new do |spec|
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ['lib']
23
23
 
24
- spec.add_runtime_dependency 'faye-websocket', '~> 0.11.0'
25
- spec.add_runtime_dependency 'selenium-webdriver', '~> 4.21'
24
+ spec.add_dependency 'faye-websocket', '~> 0.11.0'
25
+ spec.add_dependency 'selenium-webdriver', '~> 4.21'
26
26
 
27
- spec.add_development_dependency 'appium_thor', '~> 2.0'
28
- spec.add_development_dependency 'minitest', '~> 5.0'
29
- spec.add_development_dependency 'minitest-reporters', '~> 1.1'
30
- spec.add_development_dependency 'parallel_tests'
31
- spec.add_development_dependency 'rake', '~> 13.0'
32
- spec.add_development_dependency 'rubocop', '1.69.2'
33
- spec.add_development_dependency 'simplecov'
34
- spec.add_development_dependency 'steep', '~> 1.7.0'
35
- spec.add_development_dependency 'webmock', '~> 3.24.0'
36
- spec.add_development_dependency 'yard', '~> 0.9.11'
37
27
  spec.metadata['rubygems_mfa_required'] = 'true'
38
28
  end
@@ -39,7 +39,7 @@ module Appium
39
39
 
40
40
  include ::Appium::Core::Waitable
41
41
 
42
- ::Selenium::WebDriver::SearchContext.extra_finders = APPIUM_EXTRA_FINDERS
42
+ ::Selenium::WebDriver::SearchContext.extra_finders = ::Appium::Core::Base::SearchContext::APPIUM_EXTRA_FINDERS
43
43
 
44
44
  # Private API.
45
45
  # Do not use this for general use. Used by flutter driver to get bridge for creating a new element
@@ -31,7 +31,7 @@ module Appium
31
31
  class Default < ::Selenium::WebDriver::Remote::Http::Default
32
32
  attr_reader :additional_headers
33
33
 
34
- ::Selenium::WebDriver::Remote::Http::Common.user_agent = \
34
+ ::Selenium::WebDriver::Remote::Http::Common.user_agent =
35
35
  "appium/ruby_lib_core/#{VERSION} (#{::Selenium::WebDriver::Remote::Http::Common.user_agent})"
36
36
 
37
37
  # override
@@ -12,102 +12,110 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- # rubocop:disable Layout/LineLength
16
- #
17
- # Find the first element matching the given arguments
18
- #
19
- # - Android can find with uiautomator like a {http://developer.android.com/tools/help/uiautomator/UiSelector.html UISelector}.
20
- # - iOS can find with a {https://developer.apple.com/library/ios/documentation/ToolsLanguages/Reference/UIAWindowClassReference/UIAWindow/UIAWindow.html#//apple_ref/doc/uid/TP40009930 UIAutomation command}.
21
- # - iOS, only for XCUITest(WebDriverAgent), can find with a {https://github.com/facebook/WebDriverAgent/wiki/Queries class chain}
22
- #
23
- # == Find with image
24
- # Return an element if current view has a partial image. The logic depends on template matching by OpenCV.
25
- # {https://github.com/appium/appium/blob/1.x/docs/en/writing-running-appium/image-comparison.md image-comparison}
26
- #
27
- # You can handle settings for the comparision following {https://github.com/appium/appium-base-driver/blob/master/lib/basedriver/device-settings.js#L6 here}
28
- #
29
- # == Espresso viewmatcher and datamatcher
30
- # Espresso has {https://developer.android.com/training/testing/espresso/basics _onView_ matcher}
31
- # and {https://medium.com/androiddevelopers/adapterviews-and-espresso-f4172aa853cf _onData_ matcher} for more reference
32
- # that allows you to target adapters instead of Views. This method find methods based on reflections
33
- #
34
- # This is a selector strategy that allows users to pass a selector of the form:
35
- #
36
- # <code>{ name: '<name>', args: ['arg1', 'arg2', '...'], class: '<optional class>' }</code>
37
- #
38
- # - _name_: The name of a method to invoke. The method must return
39
- # a Hamcrest {http://hamcrest.org/JavaHamcrest/javadoc/1.3/org/hamcrest/Matcher.html Matcher}
40
- # - _args_: The args provided to the method
41
- # - _class_: The class name that the method is part of (defaults to <code>org.hamcrest.Matchers</code>).
42
- # Can be fully qualified, or simple, and simple defaults to <code>androidx.test.espresso.matcher</code> package
43
- # (e.g.: <code>class=CursorMatchers</code> fully qualified is <code>class=androidx.test.espresso.matcher.CursorMatchers</code>
44
- #
45
- # See example how to send viewmatcher and datamatcher in Ruby client
46
- #
47
- #
48
- # @overload find_element(how, what)
49
- # @param [Symbol, String] how The method to find the element by
50
- # @param [String] what The locator to use
51
- #
52
- # @overload find_element(opts)
53
- # @param [Hash] opts Find options
54
- # @option opts [Symbol] :how Key named after the method to find the element by, containing the locator
55
- # @return [Element]
56
- # @raise [Error::NoSuchElementError] if the element doesn't exist
57
- #
58
- # @example Find element with each keys
59
- #
60
- # # with accessibility id. All platforms.
61
- # @driver.find_elements :accessibility_id, 'Animation'
62
- # @driver.find_elements :accessibility_id, 'Animation'
63
- #
64
- # # with base64 encoded template image. All platforms.
65
- # @driver.find_elements :image, Base64.strict_encode64(File.read(file_path))
66
- #
67
- # # For Android
68
- # ## With uiautomator
69
- # @driver.find_elements :uiautomator, 'new UiSelector().clickable(true)'
70
- # ## With viewtag, but only for Espresso
71
- # ## 'setTag'/'getTag' in https://developer.android.com/reference/android/view/View
72
- # @driver.find_elements :viewtag, 'new UiSelector().clickable(true)'
73
- # # With data_matcher. The argument should be JSON format.
74
- # @driver.find_elements :data_matcher, { name: 'hasEntry', args: %w(title Animation) }.to_json
75
- #
76
- # # For iOS
77
- # ## With :predicate
78
- # @driver.find_elements :predicate, "isWDVisible == 1"
79
- # @driver.find_elements :predicate, 'wdName == "Buttons"'
80
- # @driver.find_elements :predicate, 'wdValue == "SearchBar" AND isWDDivisible == 1'
81
- #
82
- # ## With Class Chain
83
- # ### select the third child button of the first child window element
84
- # @driver.find_elements :class_chain, 'XCUIElementTypeWindow/XCUIElementTypeButton[3]'
85
- # ### select all the children windows
86
- # @driver.find_elements :class_chain, 'XCUIElementTypeWindow'
87
- # ### select the second last child of the second child window
88
- # @driver.find_elements :class_chain, 'XCUIElementTypeWindow[2]/XCUIElementTypeAny[-2]'
89
- # ### matching predicate. <code>'</code> is the mark.
90
- # @driver.find_elements :class_chain, 'XCUIElementTypeWindow['visible = 1]['name = "bla"']'
91
- # ### containing predicate. '$' is the mark.
92
- # ### Require appium-xcuitest-driver 2.54.0+. PR: https://github.com/facebook/WebDriverAgent/pull/707/files
93
- # @driver.find_elements :class_chain, 'XCUIElementTypeWindow[$name = \"bla$$$bla\"$]'
94
- # e = find_element :class_chain, "**/XCUIElementTypeWindow[$name == 'Buttons'$]"
95
- # e.tag_name #=> "XCUIElementTypeWindow"
96
- # e = find_element :class_chain, "**/XCUIElementTypeStaticText[$name == 'Buttons'$]"
97
- # e.tag_name #=> "XCUIElementTypeStaticText"
98
- #
99
- # rubocop:enable Layout/LineLength
15
+ module Appium
16
+ module Core
17
+ class Base
18
+ module SearchContext
19
+ # rubocop:disable Layout/LineLength
20
+ #
21
+ # Find the first element matching the given arguments
22
+ #
23
+ # - Android can find with uiautomator like a {http://developer.android.com/tools/help/uiautomator/UiSelector.html UISelector}.
24
+ # - iOS can find with a {https://developer.apple.com/library/ios/documentation/ToolsLanguages/Reference/UIAWindowClassReference/UIAWindow/UIAWindow.html#//apple_ref/doc/uid/TP40009930 UIAutomation command}.
25
+ # - iOS, only for XCUITest(WebDriverAgent), can find with a {https://github.com/facebook/WebDriverAgent/wiki/Queries class chain}
26
+ #
27
+ # == Find with image
28
+ # Return an element if current view has a partial image. The logic depends on template matching by OpenCV.
29
+ # {https://github.com/appium/appium/blob/1.x/docs/en/writing-running-appium/image-comparison.md image-comparison}
30
+ #
31
+ # You can handle settings for the comparision following {https://github.com/appium/appium-base-driver/blob/master/lib/basedriver/device-settings.js#L6 here}
32
+ #
33
+ # == Espresso viewmatcher and datamatcher
34
+ # Espresso has {https://developer.android.com/training/testing/espresso/basics _onView_ matcher}
35
+ # and {https://medium.com/androiddevelopers/adapterviews-and-espresso-f4172aa853cf _onData_ matcher} for more reference
36
+ # that allows you to target adapters instead of Views. This method find methods based on reflections
37
+ #
38
+ # This is a selector strategy that allows users to pass a selector of the form:
39
+ #
40
+ # <code>{ name: '<name>', args: ['arg1', 'arg2', '...'], class: '<optional class>' }</code>
41
+ #
42
+ # - _name_: The name of a method to invoke. The method must return
43
+ # a Hamcrest {http://hamcrest.org/JavaHamcrest/javadoc/1.3/org/hamcrest/Matcher.html Matcher}
44
+ # - _args_: The args provided to the method
45
+ # - _class_: The class name that the method is part of (defaults to <code>org.hamcrest.Matchers</code>).
46
+ # Can be fully qualified, or simple, and simple defaults to <code>androidx.test.espresso.matcher</code> package
47
+ # (e.g.: <code>class=CursorMatchers</code> fully qualified is <code>class=androidx.test.espresso.matcher.CursorMatchers</code>
48
+ #
49
+ # See example how to send viewmatcher and datamatcher in Ruby client
50
+ #
51
+ #
52
+ # @overload find_element(how, what)
53
+ # @param [Symbol, String] how The method to find the element by
54
+ # @param [String] what The locator to use
55
+ #
56
+ # @overload find_element(opts)
57
+ # @param [Hash] opts Find options
58
+ # @option opts [Symbol] :how Key named after the method to find the element by, containing the locator
59
+ # @return [Element]
60
+ # @raise [Error::NoSuchElementError] if the element doesn't exist
61
+ #
62
+ # @example Find element with each keys
63
+ #
64
+ # # with accessibility id. All platforms.
65
+ # @driver.find_elements :accessibility_id, 'Animation'
66
+ # @driver.find_elements :accessibility_id, 'Animation'
67
+ #
68
+ # # with base64 encoded template image. All platforms.
69
+ # @driver.find_elements :image, Base64.strict_encode64(File.read(file_path))
70
+ #
71
+ # # For Android
72
+ # ## With uiautomator
73
+ # @driver.find_elements :uiautomator, 'new UiSelector().clickable(true)'
74
+ # ## With viewtag, but only for Espresso
75
+ # ## 'setTag'/'getTag' in https://developer.android.com/reference/android/view/View
76
+ # @driver.find_elements :viewtag, 'new UiSelector().clickable(true)'
77
+ # # With data_matcher. The argument should be JSON format.
78
+ # @driver.find_elements :data_matcher, { name: 'hasEntry', args: %w(title Animation) }.to_json
79
+ #
80
+ # # For iOS
81
+ # ## With :predicate
82
+ # @driver.find_elements :predicate, "isWDVisible == 1"
83
+ # @driver.find_elements :predicate, 'wdName == "Buttons"'
84
+ # @driver.find_elements :predicate, 'wdValue == "SearchBar" AND isWDDivisible == 1'
85
+ #
86
+ # ## With Class Chain
87
+ # ### select the third child button of the first child window element
88
+ # @driver.find_elements :class_chain, 'XCUIElementTypeWindow/XCUIElementTypeButton[3]'
89
+ # ### select all the children windows
90
+ # @driver.find_elements :class_chain, 'XCUIElementTypeWindow'
91
+ # ### select the second last child of the second child window
92
+ # @driver.find_elements :class_chain, 'XCUIElementTypeWindow[2]/XCUIElementTypeAny[-2]'
93
+ # ### matching predicate. <code>'</code> is the mark.
94
+ # @driver.find_elements :class_chain, 'XCUIElementTypeWindow['visible = 1]['name = "bla"']'
95
+ # ### containing predicate. '$' is the mark.
96
+ # ### Require appium-xcuitest-driver 2.54.0+. PR: https://github.com/facebook/WebDriverAgent/pull/707/files
97
+ # @driver.find_elements :class_chain, 'XCUIElementTypeWindow[$name = \"bla$$$bla\"$]'
98
+ # e = find_element :class_chain, "**/XCUIElementTypeWindow[$name == 'Buttons'$]"
99
+ # e.tag_name #=> "XCUIElementTypeWindow"
100
+ # e = find_element :class_chain, "**/XCUIElementTypeStaticText[$name == 'Buttons'$]"
101
+ # e.tag_name #=> "XCUIElementTypeStaticText"
102
+ #
103
+ # rubocop:enable Layout/LineLength
100
104
 
101
- APPIUM_EXTRA_FINDERS = {
102
- accessibility_id: 'accessibility id',
103
- image: '-image',
104
- custom: '-custom',
105
- # Android
106
- uiautomator: '-android uiautomator', # Unavailable in Espresso
107
- viewtag: '-android viewtag', # Available in Espresso
108
- data_matcher: '-android datamatcher', # Available in Espresso
109
- view_matcher: '-android viewmatcher', # Available in Espresso
110
- # iOS
111
- predicate: '-ios predicate string',
112
- class_chain: '-ios class chain'
113
- }.freeze
105
+ APPIUM_EXTRA_FINDERS = {
106
+ accessibility_id: 'accessibility id',
107
+ image: '-image',
108
+ custom: '-custom',
109
+ # Android
110
+ uiautomator: '-android uiautomator', # Unavailable in Espresso
111
+ viewtag: '-android viewtag', # Available in Espresso
112
+ data_matcher: '-android datamatcher', # Available in Espresso
113
+ view_matcher: '-android viewmatcher', # Available in Espresso
114
+ # iOS
115
+ predicate: '-ios predicate string',
116
+ class_chain: '-ios class chain'
117
+ }.freeze
118
+ end
119
+ end
120
+ end
121
+ end
@@ -19,7 +19,7 @@ module Appium
19
19
  class Element < ::Selenium::WebDriver::Element
20
20
  include ::Appium::Core::Base::TakesScreenshot
21
21
 
22
- ::Selenium::WebDriver::SearchContext.extra_finders = APPIUM_EXTRA_FINDERS
22
+ ::Selenium::WebDriver::SearchContext.extra_finders = ::Appium::Core::Base::SearchContext::APPIUM_EXTRA_FINDERS
23
23
 
24
24
  # Retuns the element id.
25
25
  #
@@ -21,7 +21,7 @@ module Appium
21
21
 
22
22
  def initialize(delegate, listener, **opts)
23
23
  @appium_options = opts
24
- super delegate, listener
24
+ super(delegate, listener)
25
25
  end
26
26
 
27
27
  def find_element_by(how, what, parent = nil)
@@ -14,7 +14,7 @@
14
14
 
15
15
  module Appium
16
16
  module Core
17
- VERSION = '9.4.0' unless defined? ::Appium::Core::VERSION
18
- DATE = '2025-01-08' unless defined? ::Appium::Core::DATE
17
+ VERSION = '9.5.1' unless defined? ::Appium::Core::VERSION
18
+ DATE = '2025-01-29' unless defined? ::Appium::Core::DATE
19
19
  end
20
20
  end
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: 9.4.0
4
+ version: 9.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kazuaki MATSUO
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-01-08 00:00:00.000000000 Z
11
+ date: 2025-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faye-websocket
@@ -38,146 +38,6 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '4.21'
41
- - !ruby/object:Gem::Dependency
42
- name: appium_thor
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '2.0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '2.0'
55
- - !ruby/object:Gem::Dependency
56
- name: minitest
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '5.0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '5.0'
69
- - !ruby/object:Gem::Dependency
70
- name: minitest-reporters
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: '1.1'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: '1.1'
83
- - !ruby/object:Gem::Dependency
84
- name: parallel_tests
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: '0'
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: '0'
97
- - !ruby/object:Gem::Dependency
98
- name: rake
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: '13.0'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - "~>"
109
- - !ruby/object:Gem::Version
110
- version: '13.0'
111
- - !ruby/object:Gem::Dependency
112
- name: rubocop
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - '='
116
- - !ruby/object:Gem::Version
117
- version: 1.69.2
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - '='
123
- - !ruby/object:Gem::Version
124
- version: 1.69.2
125
- - !ruby/object:Gem::Dependency
126
- name: simplecov
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - ">="
130
- - !ruby/object:Gem::Version
131
- version: '0'
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - ">="
137
- - !ruby/object:Gem::Version
138
- version: '0'
139
- - !ruby/object:Gem::Dependency
140
- name: steep
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - "~>"
144
- - !ruby/object:Gem::Version
145
- version: 1.7.0
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - "~>"
151
- - !ruby/object:Gem::Version
152
- version: 1.7.0
153
- - !ruby/object:Gem::Dependency
154
- name: webmock
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: 3.24.0
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - "~>"
165
- - !ruby/object:Gem::Version
166
- version: 3.24.0
167
- - !ruby/object:Gem::Dependency
168
- name: yard
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - "~>"
172
- - !ruby/object:Gem::Version
173
- version: 0.9.11
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - "~>"
179
- - !ruby/object:Gem::Version
180
- version: 0.9.11
181
41
  description: Minimal Ruby library for Appium.
182
42
  email:
183
43
  - fly.49.89.over@gmail.com
@@ -310,7 +170,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
310
170
  requirements:
311
171
  - - ">="
312
172
  - !ruby/object:Gem::Version
313
- version: '3.0'
173
+ version: '3.1'
314
174
  required_rubygems_version: !ruby/object:Gem::Requirement
315
175
  requirements:
316
176
  - - ">="