skooma 0.3.2 → 0.3.3

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: de042bc8ca38a43927cc9f6c1fdb829aecbbf214f771f9a092345f25d2d2f36a
4
- data.tar.gz: a084b23b9eeb66af1a36d010b99bc86ae4e1b0c39e470096fc2ef788c9afb725
3
+ metadata.gz: 76912cb6b09166983cae2e1e03a104d16351116d2076e3c0b27e24491002a89b
4
+ data.tar.gz: 65f728f3eda604da0eb7750f7f6cad612cd98870626c8fc766c1554336a6efe1
5
5
  SHA512:
6
- metadata.gz: 4286775a7c888f90b46fb35b827ce0f0f21c10ffd4737f6823326a14e00a21786f3e976877d71aee7b07a6578b09188fbe5334c8c67e4f24b78ccfe6ccc00494
7
- data.tar.gz: 92e474fe454174ad5d4f1703cf8b1a9c3f9bd47bbe6eb382f60912926e28e3f9888acc612cc751c18ca8d7182f8c0922507302fbde8570ade7c0c7950c76925c
6
+ metadata.gz: 2253d20d61746403cd726d47092ba45c7614a283a1af9becfea8fcf387bcd1c9f6f4d52b48efd6ebd7284df52ac5ac944958f6997011f9b8da0b6602d5c21f0d
7
+ data.tar.gz: 9b220779384f848d308708a1ccd704314ca98d8a3ffc9683fe03962f10a997bc6465835e495638a83a2f955d19191a330e524050deef0345c858255421d2fd1c
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning].
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.3] - 2024-10-14
11
+
12
+ ### Fixed
13
+
14
+ - Fix coverage for Minitest. ([@skryukov])
15
+
10
16
  ## [0.3.2] - 2024-06-24
11
17
 
12
18
  ### Fixed
@@ -122,7 +128,8 @@ and this project adheres to [Semantic Versioning].
122
128
  [@skryukov]: https://github.com/skryukov
123
129
  [@ursm]: https://github.com/ursm
124
130
 
125
- [Unreleased]: https://github.com/skryukov/skooma/compare/v0.3.2...HEAD
131
+ [Unreleased]: https://github.com/skryukov/skooma/compare/v0.3.3...HEAD
132
+ [0.3.3]: https://github.com/skryukov/skooma/compare/v0.3.2...v0.3.3
126
133
  [0.3.2]: https://github.com/skryukov/skooma/compare/v0.3.1...v0.3.2
127
134
  [0.3.1]: https://github.com/skryukov/skooma/compare/v0.3.0...v0.3.1
128
135
  [0.3.0]: https://github.com/skryukov/skooma/compare/v0.2.3...v0.3.0
@@ -6,7 +6,7 @@ module Skooma
6
6
  # Minitest helpers for OpenAPI schema validation
7
7
  # @example
8
8
  # describe TestApp do
9
- # include Skooma::RSpec[Rails.root.join("docs", "openapi.yml")]
9
+ # include Skooma::Minitest[Rails.root.join("docs", "openapi.yml")]
10
10
  # # ...
11
11
  # end
12
12
  class Minitest < Matchers::Wrapper
@@ -39,7 +39,7 @@ module Skooma
39
39
  def initialize(openapi_path, **params)
40
40
  super(HelperMethods, openapi_path, **params)
41
41
 
42
- MiniTest.after_run { coverage.report }
42
+ ::Minitest.after_run { coverage.report }
43
43
  end
44
44
  end
45
45
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Skooma
4
- VERSION = "0.3.2"
4
+ VERSION = "0.3.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skooma
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Svyatoslav Kryukov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-24 00:00:00.000000000 Z
11
+ date: 2024-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: zeitwerk
@@ -164,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
164
  - !ruby/object:Gem::Version
165
165
  version: '0'
166
166
  requirements: []
167
- rubygems_version: 3.5.7
167
+ rubygems_version: 3.5.17
168
168
  signing_key:
169
169
  specification_version: 4
170
170
  summary: Validate API implementations against OpenAPI documents.