rspec-support 3.13.6 → 3.13.7

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: d35005fb4ae66fc37f335b75f5e4110d13bb44227d4b6a884b7a9824e808d960
4
- data.tar.gz: 565ad2fb924d29c20b92361a7f6551862caac886a4b2126e166debd798d8f79b
3
+ metadata.gz: ced51c215b6d9b3af8f27d1abe6033a633f3818312c1bd5850195a10e1ccb172
4
+ data.tar.gz: dd7afad96ac46be53ad3df4956098a7ec936828c67acb2446f9d5fa37d0bc940
5
5
  SHA512:
6
- metadata.gz: 465f5fc672b71a77d5c4b12eb4fae9033bfa8462ab923b555b25f07b9d5014a283016858eede89d6e9a90487b03cb0efc7bde68d8b1d661a1128978ec36a82af
7
- data.tar.gz: bc449675ed83f62b5764f09c2dd270d26d9cdfeaa2bdd85cf458588358ed3e0733831c5d2e47140ce626714465f5ca3ca3101e6efda804af9808bc2d8d2ce5a9
6
+ metadata.gz: '0996fd67d068112ba314ac10665a6bbc8b0c2a9c56e2147008bcf38d589de944023a27776b88f496388fb862e8f6dfa8efae4e45066f03f3672060ebfd58deb8'
7
+ data.tar.gz: 052d7bf8afb92561f555026534c8380f276aabdc0abab2572beb31788b4505e72080a8cb1179ad8c828fb4ed9fe65b5c9ccb8566d13d519c6aae4996b124caa4
checksums.yaml.gz.sig CHANGED
@@ -1,3 +1 @@
1
- ��huD�$&��q��
2
- },V��� w�4�053��|J���DN�3�Q����S�`6)��Ě{��Z����2��Ӏ0n�/�tY�I`�M�{g�W��1��ߒu���NS����n�"D�¤������'��s��)�L�i1�E���� :>G+vg�r��P;�埧���!"1o��-ŚX��FY�'���B'��`ؚ�Ғ\,`xv9�?�&!ij��Y_�WM��+-9l���=�=�7��O�lb���Z�q�����W�2�8G{�x>��UhH�0�����LM�Uۊv���G�*;�S�U&���p⎨:��G����P$-
3
- 6)��R�4vL���?�jӸ��C`���gƤt��R꼫/l$�G�D[��� ` �ˮ��m�Ȁ ��%��J���E���5���Gbh ����zKJyt+K-�� �l:��fA��І �RkE��ѯc7�O��X��hCǭ�x��� � ��@��#B"��W�'E
1
+ �V�߅�!!:X.���G= ��{C_�y�����FR�̕�/It����� <L)0-fv�;X�|�� �*��y����K���/9���O�Cٳ���� U�B.�I�[9�֋kּ1o�R_f�V��Q�;�ش��ɕbJ"�- �sΤb�H��SM[�� lj�?�`wq#�i� ��x��t���W�)a�����)�9������� v5Ӧ���#��,��5#��'?=a��{��P����6��c`~z
data/Changelog.md CHANGED
@@ -1,7 +1,14 @@
1
1
  ### Development
2
2
  [Full Changelog](https://github.com/rspec/rspec/compare/rspec-support-v3.13.6...3-13-maintenance)
3
3
 
4
- ### 3.13.6
4
+ ### 3.13.7 / 2026-01-28
5
+ [Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.6...rspec-support-v3.13.7)
6
+
7
+ Bug Fixes:
8
+
9
+ * Stop fuzzy matching causing false positives from Range objects. (Eric Mueller, rspec/rspec#298)
10
+
11
+ ### 3.13.6 / 2025-08-18
5
12
  [Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.5...rspec-support-v3.13.6)
6
13
 
7
14
  Bug Fixes:
@@ -9,7 +16,7 @@ Bug Fixes:
9
16
  * Change `RSpec::Support::HunkGenerator` to autoload rather than manual require, avoids
10
17
  a load order issue. (Jon Rowe, rspec/rspec#249)
11
18
 
12
- ### 3.13.5
19
+ ### 3.13.5 / 2025-05-27
13
20
  [Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.4...rspec-support-v3.13.5)
14
21
 
15
22
  Bug Fixes:
@@ -18,7 +25,7 @@ Bug Fixes:
18
25
  a check for keyword arguments, meaning a hash would be wrongly detected as keyword arguments
19
26
  when it should have been a positional argument. (Malcolm O'Hare, rspec/rspec#121)
20
27
 
21
- ### 3.13.4
28
+ ### 3.13.4 / 2025-05-01
22
29
  [Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.3...rspec-support-v3.13.4)
23
30
 
24
31
  Bug Fixes:
@@ -10,6 +10,9 @@ module RSpec
10
10
  def self.values_match?(expected, actual)
11
11
  if Hash === actual
12
12
  return hashes_match?(expected, actual) if Hash === expected
13
+ elsif Range === expected
14
+ # Check that actual is an equivalent Range, rather than included/covered.
15
+ return expected == actual
13
16
  elsif Array === expected && Enumerable === actual && !(Struct === actual)
14
17
  return arrays_match?(expected, actual.to_a)
15
18
  end
@@ -3,7 +3,7 @@
3
3
  module RSpec
4
4
  module Support
5
5
  module Version
6
- STRING = '3.13.6'
6
+ STRING = '3.13.7'
7
7
  end
8
8
  end
9
9
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-support
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.13.6
4
+ version: 3.13.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Chelimsky
@@ -123,11 +123,11 @@ licenses:
123
123
  - MIT
124
124
  metadata:
125
125
  bug_tracker_uri: https://github.com/rspec/rspec/issues
126
- changelog_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.6/rspec-support/Changelog.md
126
+ changelog_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.7/rspec-support/Changelog.md
127
127
  documentation_uri: https://rspec.info/documentation/
128
128
  mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
129
129
  rubygems_mfa_required: 'true'
130
- source_code_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.6/rspec-support
130
+ source_code_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.7/rspec-support
131
131
  rdoc_options:
132
132
  - "--charset=UTF-8"
133
133
  require_paths:
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  - !ruby/object:Gem::Version
144
144
  version: '0'
145
145
  requirements: []
146
- rubygems_version: 3.6.7
146
+ rubygems_version: 4.0.3
147
147
  specification_version: 4
148
- summary: rspec-support-3.13.6
148
+ summary: rspec-support-3.13.7
149
149
  test_files: []
metadata.gz.sig CHANGED
Binary file