atspi_app_driver 0.7.1 → 0.7.2

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: 2d235fd796fc2323cf5472af0fb6fedea49fa23378e06a8f068087c14c4f03c6
4
- data.tar.gz: 8d60254528f6cc5239c24566feec23c900bc6775a7d9135e992883db3a5ea76e
3
+ metadata.gz: 321ea977c559a0ff65cab5473c24a6b63fd96bb00a196d59ca9e7dd1fea5061f
4
+ data.tar.gz: 8a30fa5d63103eff3f8750b121fc8fabb7f2ff4d4efae23cfbf66c9a9b5a7823
5
5
  SHA512:
6
- metadata.gz: e76acba6cd278dd693f54ebc1bfc133b79d12290b167e9101bc6dbf24247ea1ef4a0bbc384e29666b6775bf2d89e3eb971608b0a2ab044ee705326a342f1d485
7
- data.tar.gz: 58adb7bd1c7e158382de9316bcc2ade467940ebc948115f9ae686e7165ab31c8fc41f9fbe4e1f908b2968771bfc8929d6865f90a868dc18fe37bf2972f9a1fc3
6
+ metadata.gz: 76c2f4d2ed9702f1ae15ce51c98fd3aed5be38187c428d9dbe065abc57f5bb3af1db3909040bdc54cb6797573eb9b51465b4746f89cb1018700486cf53a4fdf5
7
+ data.tar.gz: e8932a8bb6431c25a195055c8a27bc0604efef765ed55ec1fe3d1984c055bf8a93dc149ab212901da5d328801bddf03da9ecb55ec1c20df3a82405861ffa7ddc
data/Changelog.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.7.2 / 2022-02-11
4
+
5
+ * Add missing version.rb file
6
+
3
7
  ## 0.7.1 / 2022-01-23
4
8
 
5
9
  * Drop support for Ruby version 2.5
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ class AtspiAppDriver
4
+ VERSION = "0.7.2"
5
+ end
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.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matijs van Zuijlen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-23 00:00:00.000000000 Z
11
+ date: 2022-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gir_ffi
@@ -80,6 +80,20 @@ 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
@@ -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
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.