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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae68ee19cdebad14cf65d06299355715b64c3b47ed79c74253c31c1bdcda3238
4
- data.tar.gz: 1fa836b7f123ab72b334c7b833ba4e27cbed1c14eaf2b5050ad37f3e72af557b
3
+ metadata.gz: 2a59b91fb7ad467e3e63ab8283922768d3689b09cd7d963d4faae49df16bf53b
4
+ data.tar.gz: 655e3cf262349fac84617e86248172ad5f969d678acd2f8a50c72ed48fac82ad
5
5
  SHA512:
6
- metadata.gz: 1ea96ebd772336a3db9e43d5bfa66d1827f703fb14d370bb1e53d94e07b13993bc59dd9f0c641887f0c721d9000fcd0b676e21de160ec4d5a6d953a2e39f6efd
7
- data.tar.gz: 1d4eca98af763909756a56e8df767dd42d2bc9cd3de1ec31062da5ede31e7a8272afe02e7d347e42170ce88804b298bd76b25322dd33e0e6df9657302386d0a5
6
+ metadata.gz: 76d0f829a0c9448834d700065249fc7dbae48dd55d192bb62097e4db8412eaf14f0222955b6ff3c039cf505c36f28dd5dd95063cd393e71953976d203daf8a00
7
+ data.tar.gz: 29e65db5f7c0d4b2b96e6b1f2815502bfa884aca33e734b1866ab8f7e988a1671fbb7008c7e9121b9e0644d1928e605eb65498b77bf8645bc9c9a9c8fbdae971
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.1.0"
2
+ ".": "0.1.1"
3
3
  }
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:, dangling:
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:, dangling:
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?: boolean) # Assert whether the symlink is dangling or not
76
+ expect(path).to have_symlink(name, target_exist: boolean) # Assert whether the symlink is target_exist or not
@@ -5,7 +5,7 @@ module RSpec
5
5
  module Options
6
6
  # target_exist: <expected>
7
7
  class SymlinkTargetExist
8
- def self.key = :target_exist?
8
+ def self.key = :target_exist
9
9
 
10
10
  def self.description(expected)
11
11
  RSpec::PathMatchers.matcher?(expected) ? expected.description : expected.to_s
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RSpec
4
4
  module PathMatchers
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  end
7
7
  end
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.0
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.0
260
- changelog_uri: https://rubydoc.info/gems/rspec-path_matchers/0.1.0/file/CHANGELOG.md
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: []