rspec-path_matchers 0.1.0 → 0.1.1
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 +1 -1
- data/design.rb +2 -2
- data/lib/rspec/path_matchers/options/symlink_target_exist.rb +1 -1
- 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: 2a59b91fb7ad467e3e63ab8283922768d3689b09cd7d963d4faae49df16bf53b
|
4
|
+
data.tar.gz: 655e3cf262349fac84617e86248172ad5f969d678acd2f8a50c72ed48fac82ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76d0f829a0c9448834d700065249fc7dbae48dd55d192bb62097e4db8412eaf14f0222955b6ff3c039cf505c36f28dd5dd95063cd393e71953976d203daf8a00
|
7
|
+
data.tar.gz: 29e65db5f7c0d4b2b96e6b1f2815502bfa884aca33e734b1866ab8f7e988a1671fbb7008c7e9121b9e0644d1928e605eb65498b77bf8645bc9c9a9c8fbdae971
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.1.1](https://github.com/main-branch/rspec-path_matchers/compare/v0.1.0...v0.1.1) (2025-06-25)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Rename the `target_exist?` option to `target_exist` ([8c77c08](https://github.com/main-branch/rspec-path_matchers/commit/8c77c08736d90cacfb4c8248d15f57eee8774a43))
|
9
|
+
|
10
|
+
|
11
|
+
### Other Changes
|
12
|
+
|
13
|
+
* Rename the project gemspec to match the gem name ([ece0738](https://github.com/main-branch/rspec-path_matchers/commit/ece07380fa1ae085a5a4a8c24a50c05978a16f76))
|
14
|
+
|
3
15
|
## 0.1.0 (2025-06-25)
|
4
16
|
|
5
17
|
|
data/README.md
CHANGED
@@ -280,7 +280,7 @@ expect(path).to have_dir(
|
|
280
280
|
)
|
281
281
|
|
282
282
|
expect(path).to have_symlink(
|
283
|
-
name, mode:, owner:, group:, ctime:, mtime:, target:, target_type:,
|
283
|
+
name, mode:, owner:, group:, ctime:, mtime:, target:, target_type:, target_exist:
|
284
284
|
)
|
285
285
|
```
|
286
286
|
|
data/design.rb
CHANGED
@@ -11,7 +11,7 @@ expect(path).to have_dir(
|
|
11
11
|
)
|
12
12
|
|
13
13
|
expect(path).to have_symlink(
|
14
|
-
name, mode:, owner:, group:, ctime:, mtime:, target:, target_type:,
|
14
|
+
name, mode:, owner:, group:, ctime:, mtime:, target:, target_type:, target_exist:
|
15
15
|
)
|
16
16
|
|
17
17
|
########################################
|
@@ -73,4 +73,4 @@ expect(path).to have_symlink(name, mtime: timestamp_matcher) # ...the symlink mo
|
|
73
73
|
|
74
74
|
expect(path).to have_symlink(name, target: target_matcher) # ...the symlink target as a String
|
75
75
|
expect(path).to have_symlink(name, target_type: target_type)
|
76
|
-
expect(path).to have_symlink(name, target_exist
|
76
|
+
expect(path).to have_symlink(name, target_exist: boolean) # Assert whether the symlink is target_exist or not
|
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.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Couball
|
@@ -256,8 +256,8 @@ licenses:
|
|
256
256
|
metadata:
|
257
257
|
homepage_uri: https://github.com/main-branch/rspec-path_matchers
|
258
258
|
source_code_uri: https://github.com/main-branch/rspec-path_matchers
|
259
|
-
documentation_uri: https://rubydoc.info/gems/rspec-path_matchers/0.1.
|
260
|
-
changelog_uri: https://rubydoc.info/gems/rspec-path_matchers/0.1.
|
259
|
+
documentation_uri: https://rubydoc.info/gems/rspec-path_matchers/0.1.1
|
260
|
+
changelog_uri: https://rubydoc.info/gems/rspec-path_matchers/0.1.1/file/CHANGELOG.md
|
261
261
|
allowed_push_host: https://rubygems.org
|
262
262
|
rubygems_mfa_required: 'true'
|
263
263
|
rdoc_options: []
|