rspec-path_matchers 0.2.1 → 0.2.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 +4 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +12 -0
- data/README.md +7 -5
- data/lib/rspec/path_matchers/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57cf9fb73270a021f71c7afa086cee0075e8af63178be97665c11d86ec11576e
|
4
|
+
data.tar.gz: c3933b79bd5f5988ad275adc71f4c8a58a73f7b3458e00d531b0a9f594eb5dfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5733d93154823932fde435c692c9fa88aeb36e9721b496d0704f78eee3ab7a916735576f074f2438e358a66573a051c55946b8b32a68ee7743e1ec7d3e5938b2
|
7
|
+
data.tar.gz: 4b5bd87c18e4b3dea1364ca72990c1616158abb8f44e66124cacd47ae8f71b47550bcceb132d5161fb67968632260e53892139f9706c7e744a6bad5256f69894
|
data/CHANGELOG.md
CHANGED
@@ -19,6 +19,18 @@
|
|
19
19
|
* Update README to give an example toward the top of the doc ([ece4afc](https://github.com/main-branch/rspec-path_matchers/commit/ece4afc3edb1e27e96fa3fe70052c99a73f6a221))
|
20
20
|
* Update README to give an example toward the top of the doc ([5b0f196](https://github.com/main-branch/rspec-path_matchers/commit/5b0f19646fe6cd7b7cba6c057e690b7b54d5c3c3))
|
21
21
|
|
22
|
+
## [0.2.2](https://github.com/main-branch/rspec-path_matchers/compare/v0.2.1...v0.2.2) (2025-07-01)
|
23
|
+
|
24
|
+
|
25
|
+
### Features
|
26
|
+
|
27
|
+
* Ensure windows compatibility for Ruby MRI ([c712b23](https://github.com/main-branch/rspec-path_matchers/commit/c712b23e5e0eac7484278f8dd40866cfc739870d))
|
28
|
+
|
29
|
+
|
30
|
+
### Other Changes
|
31
|
+
|
32
|
+
* Add a statement about the precise, easy-to-diagnose failure messages in the README summary ([90e183e](https://github.com/main-branch/rspec-path_matchers/commit/90e183e1e828949db9a89428f5d207303814f92e))
|
33
|
+
|
22
34
|
## [0.2.1](https://github.com/main-branch/rspec-path_matchers/compare/v0.2.0...v0.2.1) (2025-07-01)
|
23
35
|
|
24
36
|
|
data/README.md
CHANGED
@@ -24,13 +24,15 @@ License](https://img.shields.io/badge/license-MIT-green)](https://opensource.org
|
|
24
24
|
|
25
25
|
## Summary
|
26
26
|
|
27
|
-
**RSpec::PathMatchers** provides a comprehensive suite of RSpec matchers for
|
28
|
-
|
27
|
+
**RSpec::PathMatchers** provides a comprehensive suite of RSpec matchers for testing
|
28
|
+
directory structures.
|
29
29
|
|
30
30
|
Verifying that a generator, build script, or any file-manipulating process has
|
31
|
-
produced the correct output can be tedious and verbose.
|
32
|
-
|
33
|
-
|
31
|
+
produced the correct output can be tedious and verbose.
|
32
|
+
|
33
|
+
This gem makes it easy to express expectations on an entire directory tree and
|
34
|
+
receive precise, easy-to-diagnose failure messages when that tree does not meet its
|
35
|
+
expectations.
|
34
36
|
|
35
37
|
## Installation
|
36
38
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-path_matchers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Couball
|
@@ -261,8 +261,8 @@ licenses:
|
|
261
261
|
metadata:
|
262
262
|
homepage_uri: https://github.com/main-branch/rspec-path_matchers
|
263
263
|
source_code_uri: https://github.com/main-branch/rspec-path_matchers
|
264
|
-
documentation_uri: https://rubydoc.info/gems/rspec-path_matchers/0.2.
|
265
|
-
changelog_uri: https://rubydoc.info/gems/rspec-path_matchers/0.2.
|
264
|
+
documentation_uri: https://rubydoc.info/gems/rspec-path_matchers/0.2.2
|
265
|
+
changelog_uri: https://rubydoc.info/gems/rspec-path_matchers/0.2.2/file/CHANGELOG.md
|
266
266
|
allowed_push_host: https://rubygems.org
|
267
267
|
rubygems_mfa_required: 'true'
|
268
268
|
rdoc_options: []
|