atspi_app_driver 0.7.0 → 0.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb7e0e902e1226338c9308c06c8b71861aaaf3a81ce6417cc1571e16bfa2aaf3
4
- data.tar.gz: 23622239a103ece6636394778c2e179e855ae2119d4bb3eb8de8a1e36dfc5b8c
3
+ metadata.gz: beb21449f4a9227eceec08649b8730d919d69213913fbfc259df71bc3cfb0b3c
4
+ data.tar.gz: 83717085c7174bf34888db03538b5ab4b55030954e76320d42bccf4b92fb55e9
5
5
  SHA512:
6
- metadata.gz: 84e215b817c6a925ac14993606eb0ad9d22544aa4181183e38c87764455e23b01ee857eec130a7785c506370457678643fb8645b806be4b3e64cb06efdf2893e
7
- data.tar.gz: 51bc41a0a5f666d01f091d5d38e46d1e8e5a68f6986e8dcbc29c0aea9e5d13f80b246be89e1772cb6300c8c91eb29fffd437003ac4c791290566e8d55997d7a4
6
+ metadata.gz: dca66e60b992467face10bcdd15d5f1cf58dbf8f465258c06caa7dd4937f48aade6ed8892dc97ab47ae52ea239d356255c0b39e00dbe80f20b1e6ce9081ad464
7
+ data.tar.gz: db96a89797a09795f71cc87a6689a5ccb41b8dc518008a53d1d6e36394cfe94f70cce25cbf390a75673358a17e50ab6fffccc5c6989b5ffc6781a2bd13c25537
data/Changelog.md CHANGED
@@ -1,11 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.8.0 / 2022-05-21
4
+
5
+ * Drop support for Ruby version 2.6
6
+ * Depend on `gir_ffi` 0.16.0 and `gir_ffi-gtk` 0.16.0
7
+
8
+ ## 0.7.2 / 2022-02-11
9
+
10
+ * Add missing version.rb file
11
+
12
+ ## 0.7.1 / 2022-01-23
13
+
14
+ * Drop support for Ruby version 2.5
15
+ * Support up to Ruby 3.1
16
+
3
17
  ## 0.7.0 / 2020-11-14
4
18
 
5
19
  * Drop support for Ruby version 2.4
6
- * Remove AtspiAppDriver#press_ctrl_q because it does not and likely will never
7
- work on Wayland. Use a regular action to quit your application instead.
8
- * Provide access to the main application Atspi object through AtspiAppDriver#application
20
+ * Remove `AtspiAppDriver#press_ctrl_q` because it does not and likely will
21
+ never work on Wayland. Use a regular action to quit your application instead.
22
+ * Provide access to the main application Atspi object through
23
+ AtspiAppDriver#application
9
24
 
10
25
  ## 0.6.0 / 2019-10-19
11
26
 
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ class AtspiAppDriver
4
+ VERSION = "0.8.0"
5
+ end
@@ -25,7 +25,7 @@ module AtspiAccessiblePatches
25
25
  end
26
26
 
27
27
  def inspect_recursive(level = 0, maxlevel = 5)
28
- puts "#{' ' * level} > name: #{name}; role: #{role}"
28
+ puts "#{" " * level} > name: #{name}; role: #{role}"
29
29
  each_child do |child|
30
30
  child.inspect_recursive(level + 1) unless level >= maxlevel
31
31
  end
@@ -66,7 +66,7 @@ class AtspiAppDriver
66
66
  end
67
67
 
68
68
  def spawn_process(arguments)
69
- command = "ruby -I#{@lib_dir} #{@app_file} #{arguments.join(' ')}"
69
+ command = "ruby -I#{@lib_dir} #{@app_file} #{arguments.join(" ")}"
70
70
  log "About to spawn: `#{command}`"
71
71
  @pid = Process.spawn command
72
72
  end
@@ -135,3 +135,5 @@ class AtspiAppDriver
135
135
  status
136
136
  end
137
137
  end
138
+
139
+ require_relative "atspi_app_driver/version"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atspi_app_driver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matijs van Zuijlen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-14 00:00:00.000000000 Z
11
+ date: 2022-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gir_ffi
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.15.0
19
+ version: 0.16.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.15.0
26
+ version: 0.16.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: gir_ffi-gtk
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.15.0
33
+ version: 0.16.0
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.15.0
40
+ version: 0.16.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: minitest
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.13.1
61
+ version: 0.14.0
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 0.13.1
68
+ version: 0.14.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -80,34 +80,48 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '13.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake-manifest
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.2.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.2.0
83
97
  - !ruby/object:Gem::Dependency
84
98
  name: rubocop
85
99
  requirement: !ruby/object:Gem::Requirement
86
100
  requirements:
87
101
  - - "~>"
88
102
  - !ruby/object:Gem::Version
89
- version: 1.3.0
103
+ version: '1.25'
90
104
  type: :development
91
105
  prerelease: false
92
106
  version_requirements: !ruby/object:Gem::Requirement
93
107
  requirements:
94
108
  - - "~>"
95
109
  - !ruby/object:Gem::Version
96
- version: 1.3.0
110
+ version: '1.25'
97
111
  - !ruby/object:Gem::Dependency
98
112
  name: rubocop-minitest
99
113
  requirement: !ruby/object:Gem::Requirement
100
114
  requirements:
101
115
  - - "~>"
102
116
  - !ruby/object:Gem::Version
103
- version: 0.10.1
117
+ version: 0.19.0
104
118
  type: :development
105
119
  prerelease: false
106
120
  version_requirements: !ruby/object:Gem::Requirement
107
121
  requirements:
108
122
  - - "~>"
109
123
  - !ruby/object:Gem::Version
110
- version: 0.10.1
124
+ version: 0.19.0
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: rubocop-packaging
113
127
  requirement: !ruby/object:Gem::Requirement
@@ -128,15 +142,15 @@ dependencies:
128
142
  requirements:
129
143
  - - "~>"
130
144
  - !ruby/object:Gem::Version
131
- version: 1.8.0
145
+ version: '1.13'
132
146
  type: :development
133
147
  prerelease: false
134
148
  version_requirements: !ruby/object:Gem::Requirement
135
149
  requirements:
136
150
  - - "~>"
137
151
  - !ruby/object:Gem::Version
138
- version: 1.8.0
139
- description:
152
+ version: '1.13'
153
+ description:
140
154
  email:
141
155
  - matijs@matijs.net
142
156
  executables: []
@@ -144,9 +158,9 @@ extensions: []
144
158
  extra_rdoc_files: []
145
159
  files:
146
160
  - Changelog.md
147
- - LICENSE.txt
148
161
  - README.md
149
162
  - lib/atspi_app_driver.rb
163
+ - lib/atspi_app_driver/version.rb
150
164
  homepage: http://www.github.com/mvz/atspi_app_driver
151
165
  licenses:
152
166
  - MIT
@@ -154,7 +168,8 @@ metadata:
154
168
  homepage_uri: http://www.github.com/mvz/atspi_app_driver
155
169
  source_code_uri: https://github.com/mvz/atspi_app_driver
156
170
  changelog_uri: https://github.com/mvz/atspi_app_driver/blob/master/Changelog.md
157
- post_install_message:
171
+ rubygems_mfa_required: 'true'
172
+ post_install_message:
158
173
  rdoc_options: []
159
174
  require_paths:
160
175
  - lib
@@ -162,15 +177,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
162
177
  requirements:
163
178
  - - ">="
164
179
  - !ruby/object:Gem::Version
165
- version: 2.5.0
180
+ version: 2.7.0
166
181
  required_rubygems_version: !ruby/object:Gem::Requirement
167
182
  requirements:
168
183
  - - ">="
169
184
  - !ruby/object:Gem::Version
170
185
  version: '0'
171
186
  requirements: []
172
- rubygems_version: 3.1.2
173
- signing_key:
187
+ rubygems_version: 3.3.7
188
+ signing_key:
174
189
  specification_version: 4
175
190
  summary: Test GirFFI-based applications using Atspi
176
191
  test_files: []
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2015-2020 Matijs van Zuijlen
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.