rspec-support 3.12.0 → 3.13.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 +4 -4
 - checksums.yaml.gz.sig +0 -0
 - data/Changelog.md +105 -56
 - data/lib/rspec/support/caller_filter.rb +3 -1
 - data/lib/rspec/support/comparable_version.rb +2 -0
 - data/lib/rspec/support/differ.rb +2 -0
 - data/lib/rspec/support/directory_maker.rb +2 -0
 - data/lib/rspec/support/encoded_string.rb +2 -0
 - data/lib/rspec/support/fuzzy_matcher.rb +2 -0
 - data/lib/rspec/support/hunk_generator.rb +2 -0
 - data/lib/rspec/support/matcher_definition.rb +2 -0
 - data/lib/rspec/support/method_signature_verifier.rb +7 -3
 - data/lib/rspec/support/mutex.rb +2 -0
 - data/lib/rspec/support/object_formatter.rb +4 -0
 - data/lib/rspec/support/recursive_const_methods.rb +2 -0
 - data/lib/rspec/support/reentrant_mutex.rb +3 -1
 - data/lib/rspec/support/ruby_features.rb +23 -0
 - data/lib/rspec/support/source/location.rb +2 -0
 - data/lib/rspec/support/source/node.rb +2 -0
 - data/lib/rspec/support/source/token.rb +2 -0
 - data/lib/rspec/support/source.rb +2 -0
 - data/lib/rspec/support/spec/deprecation_helpers.rb +2 -0
 - data/lib/rspec/support/spec/diff_helpers.rb +16 -2
 - data/lib/rspec/support/spec/formatting_support.rb +2 -0
 - data/lib/rspec/support/spec/in_sub_process.rb +6 -0
 - data/lib/rspec/support/spec/library_wide_checks.rb +2 -0
 - data/lib/rspec/support/spec/shell_out.rb +10 -0
 - data/lib/rspec/support/spec/stderr_splitter.rb +2 -0
 - data/lib/rspec/support/spec/string_matcher.rb +2 -0
 - data/lib/rspec/support/spec/with_isolated_directory.rb +2 -0
 - data/lib/rspec/support/spec/with_isolated_stderr.rb +2 -0
 - data/lib/rspec/support/spec.rb +2 -0
 - data/lib/rspec/support/version.rb +3 -1
 - data/lib/rspec/support/warnings.rb +2 -0
 - data/lib/rspec/support/with_keywords_when_needed.rb +2 -0
 - data/lib/rspec/support.rb +10 -2
 - data.tar.gz.sig +0 -0
 - metadata +25 -28
 - metadata.gz.sig +0 -0
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 5352b468c683398f3df4726443e702acbdd18a1eab9d610c0c5ec6ec663f4812
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 6431ce037ba57b48938634504607102d737d8b8c38a7440f5372e9e0ee94b68b
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 89fbe02b7800b635bf9008f4062896d102ccbbe0a6ec50bcdc72041bfd6a8f1b7f6800efd1a7bd496daa9a6872c4a73f285d054a653ae08db32f6b86ffce71ee
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: a9267d3cb8ff4034e0301ed1c119babca5f2c4f3ba5fa7e86639d87b8b9baeca1cfd83890a4ea9f7d1a965dab255fc0cf1a99a079c9e8206c0e665829f11227c
         
     | 
    
        checksums.yaml.gz.sig
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/Changelog.md
    CHANGED
    
    | 
         @@ -1,19 +1,68 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ### Development
         
     | 
| 
       2 
     | 
    
         
            -
            [Full Changelog]( 
     | 
| 
      
 2 
     | 
    
         
            +
            [Full Changelog](https://github.com/rspec/rspec/compare/rspec-support-v3.13.2...3-13-maintenance)
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            ### 3.13.3 / 2025-04-30
         
     | 
| 
      
 5 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.2...rspec-support-v3.13.3)
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            * Support for changes in diff-lcs and Ruby 3.4 in spec helpers. (Jon Rowe, #164 etc)
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            ### 3.13.2 / 2024-12-02
         
     | 
| 
      
 12 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec/compare/rspec-support-v3.13.1...rspec-support-v3.13.2)
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            No changes. Released during the monorepo migration to test release processes, but accidentally
         
     | 
| 
      
 15 
     | 
    
         
            +
            contained no changes.
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            ### 3.13.1 / 2024-02-23
         
     | 
| 
      
 18 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.0...v3.13.1)
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            * Exclude ruby internal require warnings from `RSpec::Support::CallerFilter#first_non_rspec_line`.
         
     | 
| 
      
 23 
     | 
    
         
            +
              (Jon Rowe, rspec/rspec-support#593)
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            ### 3.13.0 / 2024-02-04
         
     | 
| 
      
 26 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.2...v3.13.0)
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
            Enchancements
         
     | 
| 
      
 29 
     | 
    
         
            +
             
     | 
| 
      
 30 
     | 
    
         
            +
            * Add `RubyFeatures#supports_syntax_suggest?`. (Jon Rowe, rspec/rspec-support#571)
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
            * Allow string keys for keyword arguments during verification of method
         
     | 
| 
      
 35 
     | 
    
         
            +
              signatures, (but only on Ruby 3+). (@malcolmohare, rspec/rspec-support#591)
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            ### 3.12.2 / 2024-02-04
         
     | 
| 
      
 38 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.1...v3.12.2)
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
            * Properly surface errors from `in_sub_process`. (Jon Rowe, rspec/rspec-support#575)
         
     | 
| 
      
 43 
     | 
    
         
            +
            * Add magic comment for freezing string literals. (Josh Nichols, rspec/rspec-support#586)
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
            ### 3.12.1 / 2023-06-26
         
     | 
| 
      
 46 
     | 
    
         
            +
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.12.0...v3.12.1)
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
            Bug Fixes:
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            * Fix `RSpec::Support.thread_local_data` to be Thread local but not Fiber local.
         
     | 
| 
      
 51 
     | 
    
         
            +
              (Jon Rowe, rspec/rspec-support#581)
         
     | 
| 
       3 
52 
     | 
    
         | 
| 
       4 
53 
     | 
    
         
             
            ### 3.12.0 / 2022-10-26
         
     | 
| 
       5 
54 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.11.1...v3.12.0)
         
     | 
| 
       6 
55 
     | 
    
         
             
            Enhancements:
         
     | 
| 
       7 
56 
     | 
    
         | 
| 
       8 
57 
     | 
    
         
             
            * Add `RSpec::Support::RubyFeatures.distincts_kw_args_from_positional_hash?`
         
     | 
| 
       9 
     | 
    
         
            -
              (Jean byroot Boussier, #535)
         
     | 
| 
      
 58 
     | 
    
         
            +
              (Jean byroot Boussier, rspec/rspec-support#535)
         
     | 
| 
       10 
59 
     | 
    
         | 
| 
       11 
60 
     | 
    
         
             
            ### 3.11.1 / 2022-09-12
         
     | 
| 
       12 
61 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.11.0...v3.11.1)
         
     | 
| 
       13 
62 
     | 
    
         | 
| 
       14 
63 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       15 
64 
     | 
    
         | 
| 
       16 
     | 
    
         
            -
            * Fix ripper detection on TruffleRuby. (Brandon Fish, #541)
         
     | 
| 
      
 65 
     | 
    
         
            +
            * Fix ripper detection on TruffleRuby. (Brandon Fish, rspec/rspec-support#541)
         
     | 
| 
       17 
66 
     | 
    
         | 
| 
       18 
67 
     | 
    
         
             
            ### 3.11.0 / 2022-02-09
         
     | 
| 
       19 
68 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.10.3...v3.11.0)
         
     | 
| 
         @@ -26,9 +75,9 @@ No changes. Released to support other RSpec releases. 
     | 
|
| 
       26 
75 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       27 
76 
     | 
    
         | 
| 
       28 
77 
     | 
    
         
             
            * Use `Mutex#owned?` to allow `RSpec::Support::ReentrantMutex` to work in
         
     | 
| 
       29 
     | 
    
         
            -
              nested Fibers on Ruby 3.0 and later. (Benoit Daloze, #503, #504)
         
     | 
| 
      
 78 
     | 
    
         
            +
              nested Fibers on Ruby 3.0 and later. (Benoit Daloze, rspec/rspec-support#503, rspec/rspec-support#504)
         
     | 
| 
       30 
79 
     | 
    
         
             
            * Support `end`-less methods in `RSpec::Support::Source::Token`
         
     | 
| 
       31 
     | 
    
         
            -
              so that RSpec won't hang when an `end`-less method raises an error. (Yuji Nakayama, #505)
         
     | 
| 
      
 80 
     | 
    
         
            +
              so that RSpec won't hang when an `end`-less method raises an error. (Yuji Nakayama, rspec/rspec-support#505)
         
     | 
| 
       32 
81 
     | 
    
         | 
| 
       33 
82 
     | 
    
         
             
            ### 3.10.2 / 2021-01-28
         
     | 
| 
       34 
83 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.10.1...v3.10.2)
         
     | 
| 
         @@ -36,7 +85,7 @@ Bug Fixes: 
     | 
|
| 
       36 
85 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       37 
86 
     | 
    
         | 
| 
       38 
87 
     | 
    
         
             
            * Fix issue with `RSpec::Support.define_optimized_require_for_rspec` on JRuby
         
     | 
| 
       39 
     | 
    
         
            -
              9.1.17.0 (Jon Rowe, #492)
         
     | 
| 
      
 88 
     | 
    
         
            +
              9.1.17.0 (Jon Rowe, rspec/rspec-support#492)
         
     | 
| 
       40 
89 
     | 
    
         | 
| 
       41 
90 
     | 
    
         
             
            ### 3.10.1 / 2020-12-27
         
     | 
| 
       42 
91 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.10.0...v3.10.1)
         
     | 
| 
         @@ -44,7 +93,7 @@ Bug Fixes: 
     | 
|
| 
       44 
93 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       45 
94 
     | 
    
         | 
| 
       46 
95 
     | 
    
         
             
            * Fix deprecation expectations to fail correctly when
         
     | 
| 
       47 
     | 
    
         
            -
              asserting on messages. (Phil Pirozhkov, #453)
         
     | 
| 
      
 96 
     | 
    
         
            +
              asserting on messages. (Phil Pirozhkov, rspec/rspec-support#453)
         
     | 
| 
       48 
97 
     | 
    
         | 
| 
       49 
98 
     | 
    
         
             
            ### 3.10.0 / 2020-10-30
         
     | 
| 
       50 
99 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.9.4...v3.10.0)
         
     | 
| 
         @@ -56,26 +105,26 @@ No changes. Released to support other RSpec releases. 
     | 
|
| 
       56 
105 
     | 
    
         | 
| 
       57 
106 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       58 
107 
     | 
    
         | 
| 
       59 
     | 
    
         
            -
            * Flag ripper as supported on Truffle Ruby. (Brandon Fish, #427)
         
     | 
| 
      
 108 
     | 
    
         
            +
            * Flag ripper as supported on Truffle Ruby. (Brandon Fish, rspec/rspec-support#427)
         
     | 
| 
       60 
109 
     | 
    
         
             
            * Prevent stubbing `File.read` from breaking source extraction.
         
     | 
| 
       61 
     | 
    
         
            -
              (Jon Rowe, #431)
         
     | 
| 
      
 110 
     | 
    
         
            +
              (Jon Rowe, rspec/rspec-support#431)
         
     | 
| 
       62 
111 
     | 
    
         | 
| 
       63 
112 
     | 
    
         
             
            ### 3.9.3 / 2020-05-02
         
     | 
| 
       64 
113 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.9.2...v3.9.3)
         
     | 
| 
       65 
114 
     | 
    
         | 
| 
       66 
115 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       67 
116 
     | 
    
         | 
| 
       68 
     | 
    
         
            -
            * Mark ripper as unsupported on Truffle Ruby. (Brandon Fish, #395)
         
     | 
| 
       69 
     | 
    
         
            -
            * Mark ripper as unsupported on JRuby 9.2.0.0. (Brian Hawley, #400)
         
     | 
| 
      
 117 
     | 
    
         
            +
            * Mark ripper as unsupported on Truffle Ruby. (Brandon Fish, rspec/rspec-support#395)
         
     | 
| 
      
 118 
     | 
    
         
            +
            * Mark ripper as unsupported on JRuby 9.2.0.0. (Brian Hawley, rspec/rspec-support#400)
         
     | 
| 
       70 
119 
     | 
    
         
             
            * Capture `Mutex.new` for our `RSpec::Support:Mutex` in order to
         
     | 
| 
       71 
     | 
    
         
            -
              allow stubbing `Mutex.new`. (Jon Rowe, #411)
         
     | 
| 
      
 120 
     | 
    
         
            +
              allow stubbing `Mutex.new`. (Jon Rowe, rspec/rspec-support#411)
         
     | 
| 
       72 
121 
     | 
    
         | 
| 
       73 
122 
     | 
    
         
             
            ### 3.9.2 / 2019-12-30
         
     | 
| 
       74 
123 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.9.1...v3.9.2)
         
     | 
| 
       75 
124 
     | 
    
         | 
| 
       76 
125 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       77 
126 
     | 
    
         | 
| 
       78 
     | 
    
         
            -
            * Remove unneeded eval. (Matijs van Zuijlen, #394)
         
     | 
| 
      
 127 
     | 
    
         
            +
            * Remove unneeded eval. (Matijs van Zuijlen, rspec/rspec-support#394)
         
     | 
| 
       79 
128 
     | 
    
         | 
| 
       80 
129 
     | 
    
         
             
            ### 3.9.1 / 2019-12-28
         
     | 
| 
       81 
130 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.9.0...v3.9.1)
         
     | 
| 
         @@ -83,7 +132,7 @@ Bug Fixes: 
     | 
|
| 
       83 
132 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       84 
133 
     | 
    
         | 
| 
       85 
134 
     | 
    
         
             
            * Remove warning caused by keyword arguments on Ruby 2.7.0.
         
     | 
| 
       86 
     | 
    
         
            -
              (Jon Rowe, #392)
         
     | 
| 
      
 135 
     | 
    
         
            +
              (Jon Rowe, rspec/rspec-support#392)
         
     | 
| 
       87 
136 
     | 
    
         | 
| 
       88 
137 
     | 
    
         
             
            ### 3.9.0 / 2019-10-07
         
     | 
| 
       89 
138 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.8.3...v3.9.0)
         
     | 
| 
         @@ -98,9 +147,9 @@ Version 3.9.0 was released to allow other RSpec gems to release 3.9.0. 
     | 
|
| 
       98 
147 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       99 
148 
     | 
    
         | 
| 
       100 
149 
     | 
    
         
             
            * Escape \r when outputting strings inside arrays.
         
     | 
| 
       101 
     | 
    
         
            -
              (Tomita Masahiro, Jon Rowe, #378)
         
     | 
| 
      
 150 
     | 
    
         
            +
              (Tomita Masahiro, Jon Rowe, rspec/rspec-support#378)
         
     | 
| 
       102 
151 
     | 
    
         
             
            * Ensure that optional hash arguments are recognised correctly vs keyword
         
     | 
| 
       103 
     | 
    
         
            -
              arguments. (Evgeni Dzhelyov, #366)
         
     | 
| 
      
 152 
     | 
    
         
            +
              arguments. (Evgeni Dzhelyov, rspec/rspec-support#366)
         
     | 
| 
       104 
153 
     | 
    
         | 
| 
       105 
154 
     | 
    
         
             
            ### 3.8.2 / 2019-06-10
         
     | 
| 
       106 
155 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.8.1...v3.8.2)
         
     | 
| 
         @@ -108,9 +157,9 @@ Bug Fixes: 
     | 
|
| 
       108 
157 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       109 
158 
     | 
    
         | 
| 
       110 
159 
     | 
    
         
             
            * Ensure that an empty hash is recognised as empty keyword arguments when
         
     | 
| 
       111 
     | 
    
         
            -
              applicable. (Thomas Walpole, #375)
         
     | 
| 
      
 160 
     | 
    
         
            +
              applicable. (Thomas Walpole, rspec/rspec-support#375)
         
     | 
| 
       112 
161 
     | 
    
         
             
            * Ensure that diffing truthy values produce diffs consistently.
         
     | 
| 
       113 
     | 
    
         
            -
              (Lucas Nestor, #377)
         
     | 
| 
      
 162 
     | 
    
         
            +
              (Lucas Nestor, rspec/rspec-support#377)
         
     | 
| 
       114 
163 
     | 
    
         | 
| 
       115 
164 
     | 
    
         
             
            ### 3.8.1 / 2019-03-03
         
     | 
| 
       116 
165 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.8.0...v3.8.1)
         
     | 
| 
         @@ -118,7 +167,7 @@ Bug Fixes: 
     | 
|
| 
       118 
167 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       119 
168 
     | 
    
         | 
| 
       120 
169 
     | 
    
         
             
            * Ensure that inspecting a `SimpleDelegator` based object works regardless of
         
     | 
| 
       121 
     | 
    
         
            -
               
     | 
| 
      
 170 
     | 
    
         
            +
              visibility of the `__getobj__` method. (Jon Rowe, rspec/rspec-support#369)
         
     | 
| 
       122 
171 
     | 
    
         | 
| 
       123 
172 
     | 
    
         
             
            ### 3.8.0 / 2018-08-04
         
     | 
| 
       124 
173 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.7.1...v3.8.0)
         
     | 
| 
         @@ -126,7 +175,7 @@ Bug Fixes: 
     | 
|
| 
       126 
175 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       127 
176 
     | 
    
         | 
| 
       128 
177 
     | 
    
         
             
            * Order hash keys before diffing to improve diff accuracy when using mocked calls.
         
     | 
| 
       129 
     | 
    
         
            -
              (James Crisp, #334)
         
     | 
| 
      
 178 
     | 
    
         
            +
              (James Crisp, rspec/rspec-support#334)
         
     | 
| 
       130 
179 
     | 
    
         | 
| 
       131 
180 
     | 
    
         
             
            ### 3.7.1 / 2018-01-29
         
     | 
| 
       132 
181 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.7.0...v3.7.1)
         
     | 
| 
         @@ -134,7 +183,7 @@ Bug Fixes: 
     | 
|
| 
       134 
183 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       135 
184 
     | 
    
         | 
| 
       136 
185 
     | 
    
         
             
            * Fix source extraction logic so that it does not trigger a `SystemStackError`
         
     | 
| 
       137 
     | 
    
         
            -
              when processing deeply nested example groups. (Craig Bass, #343)
         
     | 
| 
      
 186 
     | 
    
         
            +
              when processing deeply nested example groups. (Craig Bass, rspec/rspec-support#343)
         
     | 
| 
       138 
187 
     | 
    
         | 
| 
       139 
188 
     | 
    
         
             
            ### 3.7.0 / 2017-10-17
         
     | 
| 
       140 
189 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.6.0...v3.7.0)
         
     | 
| 
         @@ -142,21 +191,21 @@ Bug Fixes: 
     | 
|
| 
       142 
191 
     | 
    
         
             
            Enhancements:
         
     | 
| 
       143 
192 
     | 
    
         | 
| 
       144 
193 
     | 
    
         
             
            * Improve compatibility with `--enable-frozen-string-literal` option
         
     | 
| 
       145 
     | 
    
         
            -
              on Ruby 2.3+. (Pat Allan, #320)
         
     | 
| 
      
 194 
     | 
    
         
            +
              on Ruby 2.3+. (Pat Allan, rspec/rspec-support#320)
         
     | 
| 
       146 
195 
     | 
    
         
             
            * Add `Support.class_of` for extracting class of any object.
         
     | 
| 
       147 
     | 
    
         
            -
              (Yuji Nakayama, #325)
         
     | 
| 
      
 196 
     | 
    
         
            +
              (Yuji Nakayama, rspec/rspec-support#325)
         
     | 
| 
       148 
197 
     | 
    
         | 
| 
       149 
198 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       150 
199 
     | 
    
         | 
| 
       151 
200 
     | 
    
         
             
            * Fix recursive const support to not blow up when given buggy classes
         
     | 
| 
       152 
     | 
    
         
            -
              that raise odd errors from `#to_str`. (Myron Marston, #317)
         
     | 
| 
      
 201 
     | 
    
         
            +
              that raise odd errors from `#to_str`. (Myron Marston, rspec/rspec-support#317)
         
     | 
| 
       153 
202 
     | 
    
         | 
| 
       154 
203 
     | 
    
         
             
            ### 3.6.0 / 2017-05-04
         
     | 
| 
       155 
204 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.6.0.beta2...3.6.0)
         
     | 
| 
       156 
205 
     | 
    
         | 
| 
       157 
206 
     | 
    
         
             
            Enhancements:
         
     | 
| 
       158 
207 
     | 
    
         | 
| 
       159 
     | 
    
         
            -
            * Import `Source` classes from rspec-core. (Yuji Nakayama, #315)
         
     | 
| 
      
 208 
     | 
    
         
            +
            * Import `Source` classes from rspec-core. (Yuji Nakayama, rspec/rspec-support#315)
         
     | 
| 
       160 
209 
     | 
    
         | 
| 
       161 
210 
     | 
    
         
             
            ### 3.6.0.beta2 / 2016-12-12
         
     | 
| 
       162 
211 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.6.0.beta1...v3.6.0.beta2)
         
     | 
| 
         @@ -168,7 +217,7 @@ No user-facing changes. 
     | 
|
| 
       168 
217 
     | 
    
         | 
| 
       169 
218 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       170 
219 
     | 
    
         | 
| 
       171 
     | 
    
         
            -
            * Prevent truncated formatted object output from mangling console codes. (#294, Anson Kelly)
         
     | 
| 
      
 220 
     | 
    
         
            +
            * Prevent truncated formatted object output from mangling console codes. (rspec/rspec-support#294, Anson Kelly)
         
     | 
| 
       172 
221 
     | 
    
         | 
| 
       173 
222 
     | 
    
         
             
            ### 3.5.0 / 2016-07-01
         
     | 
| 
       174 
223 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta4...v3.5.0)
         
     | 
| 
         @@ -179,7 +228,7 @@ Bug Fixes: 
     | 
|
| 
       179 
228 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta3...v3.5.0.beta4)
         
     | 
| 
       180 
229 
     | 
    
         | 
| 
       181 
230 
     | 
    
         
             
            Enhancements:
         
     | 
| 
       182 
     | 
    
         
            -
            * Improve `MethodSignature` to better support keyword arguments. (#250, Rob Smith).
         
     | 
| 
      
 231 
     | 
    
         
            +
            * Improve `MethodSignature` to better support keyword arguments. (rspec/rspec-support#250, Rob Smith).
         
     | 
| 
       183 
232 
     | 
    
         | 
| 
       184 
233 
     | 
    
         
             
            ### 3.5.0.beta3 / 2016-04-02
         
     | 
| 
       185 
234 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta2...v3.5.0.beta3)
         
     | 
| 
         @@ -187,12 +236,12 @@ Enhancements: 
     | 
|
| 
       187 
236 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       188 
237 
     | 
    
         | 
| 
       189 
238 
     | 
    
         
             
            * Fix `EncodedString` to properly handle the behavior of `String#split`
         
     | 
| 
       190 
     | 
    
         
            -
              on JRuby when the string contains invalid bytes. (Jon Rowe, #268)
         
     | 
| 
      
 239 
     | 
    
         
            +
              on JRuby when the string contains invalid bytes. (Jon Rowe, rspec/rspec-support#268)
         
     | 
| 
       191 
240 
     | 
    
         
             
            * Fix `ObjectFormatter` so that formatting objects that don't respond to
         
     | 
| 
       192 
241 
     | 
    
         
             
              `#inspect` (such as `BasicObject`) does not cause `NoMethodError`.
         
     | 
| 
       193 
     | 
    
         
            -
              (Yuji Nakayama, #269)
         
     | 
| 
      
 242 
     | 
    
         
            +
              (Yuji Nakayama, rspec/rspec-support#269)
         
     | 
| 
       194 
243 
     | 
    
         
             
            * Fix `ObjectFormatter` so that formatting recursive array or hash does not
         
     | 
| 
       195 
     | 
    
         
            -
              cause `SystemStackError`. (Yuji Nakayama, #270, #272)
         
     | 
| 
      
 244 
     | 
    
         
            +
              cause `SystemStackError`. (Yuji Nakayama, rspec/rspec-support#270, rspec/rspec-support#272)
         
     | 
| 
       196 
245 
     | 
    
         | 
| 
       197 
246 
     | 
    
         
             
            ### 3.5.0.beta2 / 2016-03-10
         
     | 
| 
       198 
247 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta1...v3.5.0.beta2)
         
     | 
| 
         @@ -205,7 +254,7 @@ No user-facing changes. 
     | 
|
| 
       205 
254 
     | 
    
         
             
            Enhancements:
         
     | 
| 
       206 
255 
     | 
    
         | 
| 
       207 
256 
     | 
    
         
             
            * Improve formatting of objects by allowing truncation to a pre-configured length.
         
     | 
| 
       208 
     | 
    
         
            -
              (Liam M, #256)
         
     | 
| 
      
 257 
     | 
    
         
            +
              (Liam M, rspec/rspec-support#256)
         
     | 
| 
       209 
258 
     | 
    
         | 
| 
       210 
259 
     | 
    
         
             
            ### 3.4.1 / 2015-11-20
         
     | 
| 
       211 
260 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.4.0...v3.4.1)
         
     | 
| 
         @@ -215,27 +264,27 @@ Bug Fixes: 
     | 
|
| 
       215 
264 
     | 
    
         
             
            * Fix `RSpec::Support::RubyFeature.ripper_supported?` so it returns
         
     | 
| 
       216 
265 
     | 
    
         
             
              `false` on Rubinius since the Rubinius team has no plans to support
         
     | 
| 
       217 
266 
     | 
    
         
             
              it. This prevents rspec-core from trying to load and use ripper to
         
     | 
| 
       218 
     | 
    
         
            -
              extract failure snippets. (Aaron Stone, #251)
         
     | 
| 
      
 267 
     | 
    
         
            +
              extract failure snippets. (Aaron Stone, rspec/rspec-support#251)
         
     | 
| 
       219 
268 
     | 
    
         | 
| 
       220 
269 
     | 
    
         
             
            Changes:
         
     | 
| 
       221 
270 
     | 
    
         | 
| 
       222 
     | 
    
         
            -
            * Remove `VersionChecker` in favor of `ComparableVersion`. (Yuji Nakayama, #266)
         
     | 
| 
      
 271 
     | 
    
         
            +
            * Remove `VersionChecker` in favor of `ComparableVersion`. (Yuji Nakayama, rspec/rspec-support#266)
         
     | 
| 
       223 
272 
     | 
    
         | 
| 
       224 
273 
     | 
    
         
             
            ### 3.4.0 / 2015-11-11
         
     | 
| 
       225 
274 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.3.0...v3.4.0)
         
     | 
| 
       226 
275 
     | 
    
         | 
| 
       227 
276 
     | 
    
         
             
            Enhancements:
         
     | 
| 
       228 
277 
     | 
    
         | 
| 
       229 
     | 
    
         
            -
            * Improve formatting of `Delegator` based objects (e.g. ` 
     | 
| 
       230 
     | 
    
         
            -
              failure messages and diffs. (Andrew Horner, #215)
         
     | 
| 
       231 
     | 
    
         
            -
            * Add `ComparableVersion`. (Yuji Nakayama, #245)
         
     | 
| 
       232 
     | 
    
         
            -
            * Add `Ripper` support detection. (Yuji Nakayama, #245)
         
     | 
| 
      
 278 
     | 
    
         
            +
            * Improve formatting of `Delegator` based objects (e.g. `SimpleDelegator`) in
         
     | 
| 
      
 279 
     | 
    
         
            +
              failure messages and diffs. (Andrew Horner, rspec/rspec-support#215)
         
     | 
| 
      
 280 
     | 
    
         
            +
            * Add `ComparableVersion`. (Yuji Nakayama, rspec/rspec-support#245)
         
     | 
| 
      
 281 
     | 
    
         
            +
            * Add `Ripper` support detection. (Yuji Nakayama, rspec/rspec-support#245)
         
     | 
| 
       233 
282 
     | 
    
         | 
| 
       234 
283 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       235 
284 
     | 
    
         | 
| 
       236 
285 
     | 
    
         
             
            * Work around bug in JRuby that reports that `attr_writer` methods
         
     | 
| 
       237 
286 
     | 
    
         
             
              have no parameters, causing RSpec's verifying doubles to wrongly
         
     | 
| 
       238 
     | 
    
         
            -
              fail when mocking or stubbing a writer method on JRuby. (Myron Marston, #225)
         
     | 
| 
      
 287 
     | 
    
         
            +
              fail when mocking or stubbing a writer method on JRuby. (Myron Marston, rspec/rspec-support#225)
         
     | 
| 
       239 
288 
     | 
    
         | 
| 
       240 
289 
     | 
    
         
             
            ### 3.3.0 / 2015-06-12
         
     | 
| 
       241 
290 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.2...v3.3.0)
         
     | 
| 
         @@ -244,8 +293,8 @@ Enhancements: 
     | 
|
| 
       244 
293 
     | 
    
         | 
| 
       245 
294 
     | 
    
         
             
            * Improve formatting of arrays and hashes in failure messages so they
         
     | 
| 
       246 
295 
     | 
    
         
             
              use our custom formatting of matchers, time objects, etc.
         
     | 
| 
       247 
     | 
    
         
            -
              (Myron Marston, Nicholas Chmielewski, #205)
         
     | 
| 
       248 
     | 
    
         
            -
            * Use improved formatting for diffs as well. (Nicholas Chmielewski, #205)
         
     | 
| 
      
 296 
     | 
    
         
            +
              (Myron Marston, Nicholas Chmielewski, rspec/rspec-support#205)
         
     | 
| 
      
 297 
     | 
    
         
            +
            * Use improved formatting for diffs as well. (Nicholas Chmielewski, rspec/rspec-support#205)
         
     | 
| 
       249 
298 
     | 
    
         | 
| 
       250 
299 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       251 
300 
     | 
    
         | 
| 
         @@ -254,7 +303,7 @@ Bug Fixes: 
     | 
|
| 
       254 
303 
     | 
    
         
             
              `actual` object's `==` is improperly implemented to assume that only
         
     | 
| 
       255 
304 
     | 
    
         
             
              objects of the same type will be given. This allows rspec-mocks'
         
     | 
| 
       256 
305 
     | 
    
         
             
              `anything` to match against objects with buggy `==` definitions.
         
     | 
| 
       257 
     | 
    
         
            -
              (Myron Marston, #193)
         
     | 
| 
      
 306 
     | 
    
         
            +
              (Myron Marston, rspec/rspec-support#193)
         
     | 
| 
       258 
307 
     | 
    
         | 
| 
       259 
308 
     | 
    
         
             
            ### 3.2.2 / 2015-02-23
         
     | 
| 
       260 
309 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.1...v3.2.2)
         
     | 
| 
         @@ -262,7 +311,7 @@ Bug Fixes: 
     | 
|
| 
       262 
311 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       263 
312 
     | 
    
         | 
| 
       264 
313 
     | 
    
         
             
            * Fix an encoding issue with `EncodedString#split` when encountering an
         
     | 
| 
       265 
     | 
    
         
            -
              invalid byte string. (Benjamin Fleischer, #1760)
         
     | 
| 
      
 314 
     | 
    
         
            +
              invalid byte string. (Benjamin Fleischer, rspec/rspec-support#1760)
         
     | 
| 
       266 
315 
     | 
    
         | 
| 
       267 
316 
     | 
    
         
             
            ### 3.2.1 / 2015-02-04
         
     | 
| 
       268 
317 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.0...v3.2.1)
         
     | 
| 
         @@ -270,20 +319,20 @@ Bug Fixes: 
     | 
|
| 
       270 
319 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       271 
320 
     | 
    
         | 
| 
       272 
321 
     | 
    
         
             
            * Fix `RSpec::CallerFilter` to work on Rubinius 2.2.
         
     | 
| 
       273 
     | 
    
         
            -
              (Myron Marston, #169)
         
     | 
| 
      
 322 
     | 
    
         
            +
              (Myron Marston, rspec/rspec-support#169)
         
     | 
| 
       274 
323 
     | 
    
         | 
| 
       275 
324 
     | 
    
         
             
            ### 3.2.0 / 2015-02-03
         
     | 
| 
       276 
325 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.1.2...v3.2.0)
         
     | 
| 
       277 
326 
     | 
    
         | 
| 
       278 
327 
     | 
    
         
             
            Enhancements:
         
     | 
| 
       279 
328 
     | 
    
         | 
| 
       280 
     | 
    
         
            -
            * Add extra Ruby type detection. (Jon Rowe, #133)
         
     | 
| 
       281 
     | 
    
         
            -
            * Make differ instance re-usable. (Alexey Fedorov, #160)
         
     | 
| 
      
 329 
     | 
    
         
            +
            * Add extra Ruby type detection. (Jon Rowe, rspec/rspec-support#133)
         
     | 
| 
      
 330 
     | 
    
         
            +
            * Make differ instance re-usable. (Alexey Fedorov, rspec/rspec-support#160)
         
     | 
| 
       282 
331 
     | 
    
         | 
| 
       283 
332 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       284 
333 
     | 
    
         | 
| 
       285 
334 
     | 
    
         
             
            * Do not consider `[]` and `{}` to match when performing fuzzy matching.
         
     | 
| 
       286 
     | 
    
         
            -
              (Myron Marston, #157)
         
     | 
| 
      
 335 
     | 
    
         
            +
              (Myron Marston, rspec/rspec-support#157)
         
     | 
| 
       287 
336 
     | 
    
         | 
| 
       288 
337 
     | 
    
         
             
            ### 3.1.2 / 2014-10-08
         
     | 
| 
       289 
338 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.1.1...v3.1.2)
         
     | 
| 
         @@ -291,7 +340,7 @@ Bug Fixes: 
     | 
|
| 
       291 
340 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       292 
341 
     | 
    
         | 
| 
       293 
342 
     | 
    
         
             
            * Fix method signature to not blow up with a `NoMethodError` on 1.8.7 when
         
     | 
| 
       294 
     | 
    
         
            -
              verifying against an RSpec matcher. (Myron Marston, #116)
         
     | 
| 
      
 343 
     | 
    
         
            +
              verifying against an RSpec matcher. (Myron Marston, rspec/rspec-support#116)
         
     | 
| 
       295 
344 
     | 
    
         | 
| 
       296 
345 
     | 
    
         
             
            ### 3.1.1 / 2014-09-26
         
     | 
| 
       297 
346 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.1.0...v3.1.1)
         
     | 
| 
         @@ -300,7 +349,7 @@ Bug Fixes: 
     | 
|
| 
       300 
349 
     | 
    
         | 
| 
       301 
350 
     | 
    
         
             
            * Fix `RSpec::Support::DirectoryMaker` (used by `rspec --init` and
         
     | 
| 
       302 
351 
     | 
    
         
             
              `rails generate rspec:install`) so that it detects absolute paths
         
     | 
| 
       303 
     | 
    
         
            -
               on Windows properly. (Scott Archer, #107, #108, #109) (Jon Rowe, #110)
         
     | 
| 
      
 352 
     | 
    
         
            +
               on Windows properly. (Scott Archer, rspec/rspec-support#107, rspec/rspec-support#108, rspec/rspec-support#109) (Jon Rowe, rspec/rspec-support#110)
         
     | 
| 
       304 
353 
     | 
    
         | 
| 
       305 
354 
     | 
    
         
             
            ### 3.1.0 / 2014-09-04
         
     | 
| 
       306 
355 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.4...v3.1.0)
         
     | 
| 
         @@ -308,9 +357,9 @@ Bug Fixes: 
     | 
|
| 
       308 
357 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       309 
358 
     | 
    
         | 
| 
       310 
359 
     | 
    
         
             
            * Fix `FuzzyMatcher` so that it does not wrongly match a struct against
         
     | 
| 
       311 
     | 
    
         
            -
              an array. (Myron Marston, #97)
         
     | 
| 
      
 360 
     | 
    
         
            +
              an array. (Myron Marston, rspec/rspec-support#97)
         
     | 
| 
       312 
361 
     | 
    
         
             
            * Prevent infinitely recursing `#flatten` methods from causing the differ
         
     | 
| 
       313 
     | 
    
         
            -
              to hang. (Jon Rowe, #101)
         
     | 
| 
      
 362 
     | 
    
         
            +
              to hang. (Jon Rowe, rspec/rspec-support#101)
         
     | 
| 
       314 
363 
     | 
    
         | 
| 
       315 
364 
     | 
    
         
             
            ### 3.0.4 / 2014-08-14
         
     | 
| 
       316 
365 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.3...v3.0.4)
         
     | 
| 
         @@ -318,7 +367,7 @@ Bug Fixes: 
     | 
|
| 
       318 
367 
     | 
    
         
             
            Bug Fixes:
         
     | 
| 
       319 
368 
     | 
    
         | 
| 
       320 
369 
     | 
    
         
             
            * Fix `FuzzyMatcher` so that it does not silence `ArgumentError` raised
         
     | 
| 
       321 
     | 
    
         
            -
              from broken implementations of `==`. (Myron Marston, #94)
         
     | 
| 
      
 370 
     | 
    
         
            +
              from broken implementations of `==`. (Myron Marston, rspec/rspec-support#94)
         
     | 
| 
       322 
371 
     | 
    
         | 
| 
       323 
372 
     | 
    
         
             
            ### 3.0.3 / 2014-07-21
         
     | 
| 
       324 
373 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.2...v3.0.3)
         
     | 
| 
         @@ -327,23 +376,23 @@ Bug Fixes: 
     | 
|
| 
       327 
376 
     | 
    
         | 
| 
       328 
377 
     | 
    
         
             
            * Fix regression in `Support#method_handle_for` where proxy objects
         
     | 
| 
       329 
378 
     | 
    
         
             
              with method delegated would wrongly not return a method handle.
         
     | 
| 
       330 
     | 
    
         
            -
              (Jon Rowe, #90)
         
     | 
| 
       331 
     | 
    
         
            -
            * Properly detect Module#prepend support in Ruby 2.1+ (Ben Langfeld, #91)
         
     | 
| 
      
 379 
     | 
    
         
            +
              (Jon Rowe, rspec/rspec-support#90)
         
     | 
| 
      
 380 
     | 
    
         
            +
            * Properly detect Module#prepend support in Ruby 2.1+ (Ben Langfeld, rspec/rspec-support#91)
         
     | 
| 
       332 
381 
     | 
    
         
             
            * Fix `rspec/support/warnings.rb` so it can be loaded and used in
         
     | 
| 
       333 
     | 
    
         
            -
              isolation. (Myron Marston, #93)
         
     | 
| 
      
 382 
     | 
    
         
            +
              isolation. (Myron Marston, rspec/rspec-support#93)
         
     | 
| 
       334 
383 
     | 
    
         | 
| 
       335 
384 
     | 
    
         
             
            ### 3.0.2 / 2014-06-20
         
     | 
| 
       336 
385 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.1...v3.0.2)
         
     | 
| 
       337 
386 
     | 
    
         | 
| 
       338 
387 
     | 
    
         
             
            * Revert `BlockSignature` change from 3.0.1 because of a ruby bug that
         
     | 
| 
       339 
388 
     | 
    
         
             
              caused it to change the block's behavior (https://bugs.ruby-lang.org/issues/9967).
         
     | 
| 
       340 
     | 
    
         
            -
              (Myron Marston, rspec- 
     | 
| 
      
 389 
     | 
    
         
            +
              (Myron Marston, rspec-mocksrspec/rspec-support#721)
         
     | 
| 
       341 
390 
     | 
    
         | 
| 
       342 
391 
     | 
    
         
             
            ### 3.0.1 / 2014-06-19
         
     | 
| 
       343 
392 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.0...v3.0.1)
         
     | 
| 
       344 
393 
     | 
    
         | 
| 
       345 
394 
     | 
    
         
             
            * Fix `BlockSignature` so that it correctly differentiates between
         
     | 
| 
       346 
     | 
    
         
            -
              required and optional block args. (Myron Marston, rspec- 
     | 
| 
      
 395 
     | 
    
         
            +
              required and optional block args. (Myron Marston, rspec-mocksrspec/rspec-support#714)
         
     | 
| 
       347 
396 
     | 
    
         | 
| 
       348 
397 
     | 
    
         
             
            ### 3.0.0 / 2014-06-01
         
     | 
| 
       349 
398 
     | 
    
         
             
            [Full Changelog](http://github.com/rspec/rspec-support/compare/v3.0.0.rc1...v3.0.0)
         
     | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            RSpec::Support.require_rspec_support "ruby_features"
         
     | 
| 
       2 
4 
     | 
    
         | 
| 
       3 
5 
     | 
    
         
             
            module RSpec
         
     | 
| 
         @@ -25,7 +27,7 @@ module RSpec 
     | 
|
| 
       25 
27 
     | 
    
         
             
                # when `CallerFilter.first_non_rspec_line` is called from the top level of a required
         
     | 
| 
       26 
28 
     | 
    
         
             
                # file, but it depends on if rubygems is loaded or not. We don't want to have to deal
         
     | 
| 
       27 
29 
     | 
    
         
             
                # with this complexity in our `RSpec.deprecate` calls, so we ignore it here.
         
     | 
| 
       28 
     | 
    
         
            -
                IGNORE_REGEX = Regexp.union(LIB_REGEX, "rubygems/core_ext/kernel_require.rb", "<internal:")
         
     | 
| 
      
 30 
     | 
    
         
            +
                IGNORE_REGEX = Regexp.union(LIB_REGEX, "rubygems/core_ext/kernel_require.rb", "<internal:", %r{/lib/ruby/[^/]+/bundled_gems\.rb})
         
     | 
| 
       29 
31 
     | 
    
         | 
| 
       30 
32 
     | 
    
         
             
                if RSpec::Support::RubyFeatures.caller_locations_supported?
         
     | 
| 
       31 
33 
     | 
    
         
             
                  # This supports args because it's more efficient when the caller specifies
         
     | 
    
        data/lib/rspec/support/differ.rb
    CHANGED
    
    
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            require 'rspec/support'
         
     | 
| 
       2 
4 
     | 
    
         
             
            RSpec::Support.require_rspec_support "ruby_features"
         
     | 
| 
       3 
5 
     | 
    
         
             
            RSpec::Support.require_rspec_support "matcher_definition"
         
     | 
| 
         @@ -82,7 +84,7 @@ module RSpec 
     | 
|
| 
       82 
84 
     | 
    
         
             
                    def has_kw_args_in?(args)
         
     | 
| 
       83 
85 
     | 
    
         
             
                      Hash === args.last &&
         
     | 
| 
       84 
86 
     | 
    
         
             
                        could_contain_kw_args?(args) &&
         
     | 
| 
       85 
     | 
    
         
            -
                        (args.last.empty? || args.last.keys.any? { |x| x.is_a?(Symbol) })
         
     | 
| 
      
 87 
     | 
    
         
            +
                        (RubyFeatures.kw_arg_separation? || args.last.empty? || args.last.keys.any? { |x| x.is_a?(Symbol) })
         
     | 
| 
       86 
88 
     | 
    
         
             
                    end
         
     | 
| 
       87 
89 
     | 
    
         | 
| 
       88 
90 
     | 
    
         
             
                    # Without considering what the last arg is, could it
         
     | 
| 
         @@ -361,7 +363,7 @@ module RSpec 
     | 
|
| 
       361 
363 
     | 
    
         
             
                  end
         
     | 
| 
       362 
364 
     | 
    
         | 
| 
       363 
365 
     | 
    
         
             
                  def split_args(*args)
         
     | 
| 
       364 
     | 
    
         
            -
                    kw_args = if @signature.has_kw_args_in?(args)
         
     | 
| 
      
 366 
     | 
    
         
            +
                    kw_args = if @signature.has_kw_args_in?(args) && !RubyFeatures.kw_arg_separation?
         
     | 
| 
       365 
367 
     | 
    
         
             
                                last = args.pop
         
     | 
| 
       366 
368 
     | 
    
         
             
                                non_kw_args = last.reject { |k, _| k.is_a?(Symbol) }
         
     | 
| 
       367 
369 
     | 
    
         
             
                                if non_kw_args.empty?
         
     | 
| 
         @@ -370,6 +372,8 @@ module RSpec 
     | 
|
| 
       370 
372 
     | 
    
         
             
                                  args << non_kw_args
         
     | 
| 
       371 
373 
     | 
    
         
             
                                  last.select { |k, _| k.is_a?(Symbol) }.keys
         
     | 
| 
       372 
374 
     | 
    
         
             
                                end
         
     | 
| 
      
 375 
     | 
    
         
            +
                              elsif @signature.has_kw_args_in?(args) && RubyFeatures.kw_arg_separation?
         
     | 
| 
      
 376 
     | 
    
         
            +
                                args.pop.keys
         
     | 
| 
       373 
377 
     | 
    
         
             
                              else
         
     | 
| 
       374 
378 
     | 
    
         
             
                                []
         
     | 
| 
       375 
379 
     | 
    
         
             
                              end
         
     | 
| 
         @@ -378,7 +382,7 @@ module RSpec 
     | 
|
| 
       378 
382 
     | 
    
         
             
                  end
         
     | 
| 
       379 
383 
     | 
    
         
             
                end
         
     | 
| 
       380 
384 
     | 
    
         | 
| 
       381 
     | 
    
         
            -
                # Figures out  
     | 
| 
      
 385 
     | 
    
         
            +
                # Figures out whether a given method can accept various arguments.
         
     | 
| 
       382 
386 
     | 
    
         
             
                # Surprisingly non-trivial.
         
     | 
| 
       383 
387 
     | 
    
         
             
                #
         
     | 
| 
       384 
388 
     | 
    
         
             
                # @private
         
     | 
    
        data/lib/rspec/support/mutex.rb
    CHANGED
    
    
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            RSpec::Support.require_rspec_support 'matcher_definition'
         
     | 
| 
       2 
4 
     | 
    
         | 
| 
       3 
5 
     | 
    
         
             
            module RSpec
         
     | 
| 
         @@ -59,6 +61,8 @@ module RSpec 
     | 
|
| 
       59 
61 
     | 
    
         
             
                      prepare_array(object)
         
     | 
| 
       60 
62 
     | 
    
         
             
                    when Hash
         
     | 
| 
       61 
63 
     | 
    
         
             
                      prepare_hash(object)
         
     | 
| 
      
 64 
     | 
    
         
            +
                    when Symbol
         
     | 
| 
      
 65 
     | 
    
         
            +
                      object
         
     | 
| 
       62 
66 
     | 
    
         
             
                    else
         
     | 
| 
       63 
67 
     | 
    
         
             
                      inspector_class = INSPECTOR_CLASSES.find { |inspector| inspector.can_inspect?(object) }
         
     | 
| 
       64 
68 
     | 
    
         
             
                      inspector_class.new(object, self)
         
     | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            module RSpec
         
     | 
| 
       2 
4 
     | 
    
         
             
              module Support
         
     | 
| 
       3 
5 
     | 
    
         
             
                # Allows a thread to lock out other threads from a critical section of code,
         
     | 
| 
         @@ -62,7 +64,7 @@ module RSpec 
     | 
|
| 
       62 
64 
     | 
    
         
             
                  # On 1.9 and up, this is in core, so we just use the real one
         
     | 
| 
       63 
65 
     | 
    
         
             
                  class Mutex < ::Mutex
         
     | 
| 
       64 
66 
     | 
    
         
             
                    # If you mock Mutex.new you break our usage of Mutex, so
         
     | 
| 
       65 
     | 
    
         
            -
                    # instead we capture the original method to return  
     | 
| 
      
 67 
     | 
    
         
            +
                    # instead we capture the original method to return Mutexes.
         
     | 
| 
       66 
68 
     | 
    
         
             
                    NEW_MUTEX_METHOD = Mutex.method(:new)
         
     | 
| 
       67 
69 
     | 
    
         | 
| 
       68 
70 
     | 
    
         
             
                    def self.new
         
     | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            require 'rbconfig'
         
     | 
| 
       2 
4 
     | 
    
         
             
            RSpec::Support.require_rspec_support "comparable_version"
         
     | 
| 
       3 
5 
     | 
    
         | 
| 
         @@ -94,6 +96,27 @@ module RSpec 
     | 
|
| 
       94 
96 
     | 
    
         
             
                    end
         
     | 
| 
       95 
97 
     | 
    
         
             
                  end
         
     | 
| 
       96 
98 
     | 
    
         | 
| 
      
 99 
     | 
    
         
            +
                  if RUBY_VERSION.to_f >= 3.2
         
     | 
| 
      
 100 
     | 
    
         
            +
                    def supports_syntax_suggest?
         
     | 
| 
      
 101 
     | 
    
         
            +
                      true
         
     | 
| 
      
 102 
     | 
    
         
            +
                    end
         
     | 
| 
      
 103 
     | 
    
         
            +
                  else
         
     | 
| 
      
 104 
     | 
    
         
            +
                    def supports_syntax_suggest?
         
     | 
| 
      
 105 
     | 
    
         
            +
                      false
         
     | 
| 
      
 106 
     | 
    
         
            +
                    end
         
     | 
| 
      
 107 
     | 
    
         
            +
                  end
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
                  if RUBY_VERSION.to_f >= 3.0
         
     | 
| 
      
 110 
     | 
    
         
            +
                    # https://rubyreferences.github.io/rubychanges/3.0.html#keyword-arguments-are-now-fully-separated-from-positional-arguments
         
     | 
| 
      
 111 
     | 
    
         
            +
                    def kw_arg_separation?
         
     | 
| 
      
 112 
     | 
    
         
            +
                      true
         
     | 
| 
      
 113 
     | 
    
         
            +
                    end
         
     | 
| 
      
 114 
     | 
    
         
            +
                  else
         
     | 
| 
      
 115 
     | 
    
         
            +
                    def kw_arg_separation?
         
     | 
| 
      
 116 
     | 
    
         
            +
                      false
         
     | 
| 
      
 117 
     | 
    
         
            +
                    end
         
     | 
| 
      
 118 
     | 
    
         
            +
                  end
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
       97 
120 
     | 
    
         
             
                  if RUBY_VERSION.to_f >= 2.7
         
     | 
| 
       98 
121 
     | 
    
         
             
                    def supports_taint?
         
     | 
| 
       99 
122 
     | 
    
         
             
                      false
         
     | 
    
        data/lib/rspec/support/source.rb
    CHANGED
    
    
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            require 'diff/lcs'
         
     | 
| 
       2 
4 
     | 
    
         | 
| 
       3 
5 
     | 
    
         
             
            module RSpec
         
     | 
| 
         @@ -10,13 +12,25 @@ module RSpec 
     | 
|
| 
       10 
12 
     | 
    
         
             
                      def one_line_header(line_number=2)
         
     | 
| 
       11 
13 
     | 
    
         
             
                        "-1,#{line_number} +1,#{line_number}"
         
     | 
| 
       12 
14 
     | 
    
         
             
                      end
         
     | 
| 
       13 
     | 
    
         
            -
                     
     | 
| 
      
 15 
     | 
    
         
            +
                    elsif ::Diff::LCS::VERSION.to_f < 1.6
         
     | 
| 
       14 
16 
     | 
    
         
             
                      def one_line_header(_=2)
         
     | 
| 
       15 
17 
     | 
    
         
             
                        "-1 +1"
         
     | 
| 
       16 
18 
     | 
    
         
             
                      end
         
     | 
| 
      
 19 
     | 
    
         
            +
                    else
         
     | 
| 
      
 20 
     | 
    
         
            +
                      def one_line_header(line_number=2)
         
     | 
| 
      
 21 
     | 
    
         
            +
                        if line_number - 1 == 1
         
     | 
| 
      
 22 
     | 
    
         
            +
                          "-1 +1"
         
     | 
| 
      
 23 
     | 
    
         
            +
                        else
         
     | 
| 
      
 24 
     | 
    
         
            +
                          "-1,#{line_number - 1} +1,#{line_number - 1}"
         
     | 
| 
      
 25 
     | 
    
         
            +
                        end
         
     | 
| 
      
 26 
     | 
    
         
            +
                      end
         
     | 
| 
       17 
27 
     | 
    
         
             
                    end
         
     | 
| 
       18 
28 
     | 
    
         | 
| 
       19 
     | 
    
         
            -
                    if Diff::LCS::VERSION.to_f  
     | 
| 
      
 29 
     | 
    
         
            +
                    if ::Diff::LCS::VERSION.to_f > 1.5
         
     | 
| 
      
 30 
     | 
    
         
            +
                      def removing_two_line_header
         
     | 
| 
      
 31 
     | 
    
         
            +
                        "-1,2 +0,0"
         
     | 
| 
      
 32 
     | 
    
         
            +
                      end
         
     | 
| 
      
 33 
     | 
    
         
            +
                    elsif Diff::LCS::VERSION.to_f < 1.4 || Diff::LCS::VERSION >= "1.4.4"
         
     | 
| 
       20 
34 
     | 
    
         
             
                      def removing_two_line_header
         
     | 
| 
       21 
35 
     | 
    
         
             
                        "-1,3 +1"
         
     | 
| 
       22 
36 
     | 
    
         
             
                      end
         
     | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            module RSpec
         
     | 
| 
       2 
4 
     | 
    
         
             
              module Support
         
     | 
| 
       3 
5 
     | 
    
         
             
                module InSubProcess
         
     | 
| 
         @@ -11,6 +13,10 @@ module RSpec 
     | 
|
| 
       11 
13 
     | 
    
         
             
                      exception_reader, exception_writer = IO.pipe
         
     | 
| 
       12 
14 
     | 
    
         
             
                      result_reader, result_writer = IO.pipe
         
     | 
| 
       13 
15 
     | 
    
         | 
| 
      
 16 
     | 
    
         
            +
                      # Set binary mode to avoid errors surrounding ascii-8bit to utf-8 conversion
         
     | 
| 
      
 17 
     | 
    
         
            +
                      # this happens with warnings on rspec-rails for example
         
     | 
| 
      
 18 
     | 
    
         
            +
                      [exception_reader, exception_writer, result_reader, result_writer].each { |io| io.binmode }
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
       14 
20 
     | 
    
         
             
                      pid = Process.fork do
         
     | 
| 
       15 
21 
     | 
    
         
             
                        warning_preventer = $stderr = RSpec::Support::StdErrSplitter.new($stderr)
         
     | 
| 
       16 
22 
     | 
    
         | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            require 'open3'
         
     | 
| 
       2 
4 
     | 
    
         
             
            require 'rake/file_utils'
         
     | 
| 
       3 
5 
     | 
    
         
             
            require 'shellwords'
         
     | 
| 
         @@ -59,7 +61,9 @@ module RSpec 
     | 
|
| 
       59 
61 
     | 
    
         
             
                      %r{bundler/source/rubygems},
         
     | 
| 
       60 
62 
     | 
    
         
             
                      # Ignore bundler + rubygems warning.
         
     | 
| 
       61 
63 
     | 
    
         
             
                      %r{site_ruby/\d\.\d\.\d/rubygems},
         
     | 
| 
      
 64 
     | 
    
         
            +
                      %r{site_ruby/\d\.\d\.\d/bundler},
         
     | 
| 
       62 
65 
     | 
    
         
             
                      %r{jruby-\d\.\d\.\d+\.\d/lib/ruby/stdlib/rubygems},
         
     | 
| 
      
 66 
     | 
    
         
            +
                      %r{lib/rubygems/custom_require},
         
     | 
| 
       63 
67 
     | 
    
         
             
                      # This is required for windows for some reason
         
     | 
| 
       64 
68 
     | 
    
         
             
                      %r{lib/bundler/rubygems},
         
     | 
| 
       65 
69 
     | 
    
         
             
                      # This is a JRuby file that generates warnings on 9.0.3.0
         
     | 
| 
         @@ -77,6 +81,12 @@ module RSpec 
     | 
|
| 
       77 
81 
     | 
    
         
             
                      # This is a JRuby 9.2.1.x error
         
     | 
| 
       78 
82 
     | 
    
         
             
                      %r{jruby/kernel/gem_prelude},
         
     | 
| 
       79 
83 
     | 
    
         
             
                      %r{lib/jruby\.jar!/jruby/preludes},
         
     | 
| 
      
 84 
     | 
    
         
            +
                      # Ignore some JRuby errors for gems
         
     | 
| 
      
 85 
     | 
    
         
            +
                      %r{jruby/\d\.\d(\.\d)?/gems/aruba},
         
     | 
| 
      
 86 
     | 
    
         
            +
                      %r{jruby/\d\.\d(\.\d)?/gems/ffi},
         
     | 
| 
      
 87 
     | 
    
         
            +
                      %r{warning: encoding options not supported in 1\.8},
         
     | 
| 
      
 88 
     | 
    
         
            +
                      # Ignore errors from asdf
         
     | 
| 
      
 89 
     | 
    
         
            +
                      %r{\.asdf/installs},
         
     | 
| 
       80 
90 
     | 
    
         
             
                    ]
         
     | 
| 
       81 
91 
     | 
    
         | 
| 
       82 
92 
     | 
    
         
             
                  def strip_known_warnings(input)
         
     | 
    
        data/lib/rspec/support/spec.rb
    CHANGED
    
    
    
        data/lib/rspec/support.rb
    CHANGED
    
    | 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            module RSpec
         
     | 
| 
       2 
4 
     | 
    
         
             
              module Support
         
     | 
| 
       3 
5 
     | 
    
         
             
                # @api private
         
     | 
| 
         @@ -89,8 +91,14 @@ module RSpec 
     | 
|
| 
       89 
91 
     | 
    
         
             
                end
         
     | 
| 
       90 
92 
     | 
    
         | 
| 
       91 
93 
     | 
    
         
             
                # A single thread local variable so we don't excessively pollute that namespace.
         
     | 
| 
       92 
     | 
    
         
            -
                 
     | 
| 
       93 
     | 
    
         
            -
                   
     | 
| 
      
 94 
     | 
    
         
            +
                if RUBY_VERSION.to_f >= 2
         
     | 
| 
      
 95 
     | 
    
         
            +
                  def self.thread_local_data
         
     | 
| 
      
 96 
     | 
    
         
            +
                    Thread.current.thread_variable_get(:__rspec) || Thread.current.thread_variable_set(:__rspec, {})
         
     | 
| 
      
 97 
     | 
    
         
            +
                  end
         
     | 
| 
      
 98 
     | 
    
         
            +
                else
         
     | 
| 
      
 99 
     | 
    
         
            +
                  def self.thread_local_data
         
     | 
| 
      
 100 
     | 
    
         
            +
                    Thread.current[:__rspec] ||= {}
         
     | 
| 
      
 101 
     | 
    
         
            +
                  end
         
     | 
| 
       94 
102 
     | 
    
         
             
                end
         
     | 
| 
       95 
103 
     | 
    
         | 
| 
       96 
104 
     | 
    
         
             
                # @api private
         
     | 
    
        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. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 3.13.3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - David Chelimsky
         
     | 
| 
         @@ -10,16 +10,15 @@ authors: 
     | 
|
| 
       10 
10 
     | 
    
         
             
            - Sam Phippen
         
     | 
| 
       11 
11 
     | 
    
         
             
            - Xaviery Shay
         
     | 
| 
       12 
12 
     | 
    
         
             
            - Bradley Schaefer
         
     | 
| 
       13 
     | 
    
         
            -
            autorequire: 
         
     | 
| 
       14 
13 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       15 
14 
     | 
    
         
             
            cert_chain:
         
     | 
| 
       16 
15 
     | 
    
         
             
            - |
         
     | 
| 
       17 
16 
     | 
    
         
             
              -----BEGIN CERTIFICATE-----
         
     | 
| 
       18 
     | 
    
         
            -
               
     | 
| 
      
 17 
     | 
    
         
            +
              MIIFvjCCA6agAwIBAgIJAPXjfUbCjdXVMA0GCSqGSIb3DQEBCwUAMIGAMQswCQYD
         
     | 
| 
       19 
18 
     | 
    
         
             
              VQQGEwJVUzETMBEGA1UECAwKV2FzaGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEO
         
     | 
| 
       20 
19 
     | 
    
         
             
              MAwGA1UECgwFUlNwZWMxEzARBgNVBAMMCnJzcGVjLmluZm8xJTAjBgkqhkiG9w0B
         
     | 
| 
       21 
     | 
    
         
            -
               
     | 
| 
       22 
     | 
    
         
            -
               
     | 
| 
      
 20 
     | 
    
         
            +
              CQEWFnJzcGVjQGdvb2dsZWdyb3Vwcy5jb20wHhcNMjUwMjA2MTE0NjU2WhcNMjYw
         
     | 
| 
      
 21 
     | 
    
         
            +
              MjA2MTE0NjU2WjCBgDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCldhc2hpbmd0b24x
         
     | 
| 
       23 
22 
     | 
    
         
             
              EDAOBgNVBAcMB1NlYXR0bGUxDjAMBgNVBAoMBVJTcGVjMRMwEQYDVQQDDApyc3Bl
         
     | 
| 
       24 
23 
     | 
    
         
             
              Yy5pbmZvMSUwIwYJKoZIhvcNAQkBFhZyc3BlY0Bnb29nbGVncm91cHMuY29tMIIC
         
     | 
| 
       25 
24 
     | 
    
         
             
              IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsSmjgcHaKlD0jizRJowi2bGI
         
     | 
| 
         @@ -33,22 +32,21 @@ cert_chain: 
     | 
|
| 
       33 
32 
     | 
    
         
             
              Xeh3EVdWY3vMB1pkhPwlsenpcmj5gOzrd54lELOVbCGHCf48iSqeflY2Lhe0pvzK
         
     | 
| 
       34 
33 
     | 
    
         
             
              blXCJBDmtrebvus291rM/dHcbEfK1SVd5Wut/n131iouf6dnNCFskFygDcgBbthC
         
     | 
| 
       35 
34 
     | 
    
         
             
              gpEMqf80lEmhX59VUsm0Pv6OEo+ZPHBvXPiJA6DShQh9t3YtpwyA8uVDMbT/i32u
         
     | 
| 
       36 
     | 
    
         
            -
               
     | 
| 
       37 
     | 
    
         
            -
               
     | 
| 
       38 
     | 
    
         
            -
               
     | 
| 
       39 
     | 
    
         
            -
               
     | 
| 
       40 
     | 
    
         
            -
              + 
     | 
| 
       41 
     | 
    
         
            -
               
     | 
| 
       42 
     | 
    
         
            -
               
     | 
| 
       43 
     | 
    
         
            -
               
     | 
| 
       44 
     | 
    
         
            -
               
     | 
| 
       45 
     | 
    
         
            -
               
     | 
| 
       46 
     | 
    
         
            -
               
     | 
| 
       47 
     | 
    
         
            -
               
     | 
| 
       48 
     | 
    
         
            -
               
     | 
| 
       49 
     | 
    
         
            -
              F3MdtaDehhjC
         
     | 
| 
      
 35 
     | 
    
         
            +
              2FUsqZbbJcCmkBrGposCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
         
     | 
| 
      
 36 
     | 
    
         
            +
              HQYDVR0OBBYEFPPvQ5XT0Nvuhi6k+hrWVv35J+TeMA0GCSqGSIb3DQEBCwUAA4IC
         
     | 
| 
      
 37 
     | 
    
         
            +
              AQBGBr0ll2yLrkO6IeK5Q7qZFnANaUCKfi6Of9VztZJXgKAU5KAQxyOidGktoA5N
         
     | 
| 
      
 38 
     | 
    
         
            +
              lp+bFKudRkW8jSehqoNaNBdSZ9Bc07EGMXIhUFJZF9rq7Z2SKPwUm6EaSsBK13QR
         
     | 
| 
      
 39 
     | 
    
         
            +
              U4K6wuaw5ZJSFzklapoGOJRGnFlnNtlhNFY6+tTwCeblwZbcuYGyGY8+Rg7GbyVl
         
     | 
| 
      
 40 
     | 
    
         
            +
              3Tr4Gi1aS/qG/MDXKdE8HWm39dmaAMdbw6dg1VBd0JrX2VqH7xvE1dM/D3OlKrNp
         
     | 
| 
      
 41 
     | 
    
         
            +
              gNFRNJig3Y8qPjocZR0cGkhgZoC9wribWxHSNawZm4CoV3fja2HNx9QyM7BaB+as
         
     | 
| 
      
 42 
     | 
    
         
            +
              yuqAiBbA7vBcyc8nKATip3mxbyXYXoDD7nmO8JCPP7O/WsgG+U/B2a0kPdvYFoxE
         
     | 
| 
      
 43 
     | 
    
         
            +
              Q0Js3GtFCuMvL+0rifqdxBOLtu0Pw9q4RvToTJIl2IR6eTgCb82B1hw9qKf7PjuL
         
     | 
| 
      
 44 
     | 
    
         
            +
              BoEsYjjDhGw6FZvcJG8O6uj7aB+z4aF21YR74UGL7sq/RIPNNez5JI95jTGfqCPy
         
     | 
| 
      
 45 
     | 
    
         
            +
              6yo0w3zja3yg28QK3Fj+tbOHeSLv9SDQWi/1jiPprGzbxGvbVvjvX11YZc46vkmY
         
     | 
| 
      
 46 
     | 
    
         
            +
              AwP+qZPPf97FXXZGEGIYhhHpnj+Ltx9nCetRPiZ4rvYBcXgCWVQSg6eiEofrMwn/
         
     | 
| 
      
 47 
     | 
    
         
            +
              AKMCABhZ1Y2eATsfMgdkmIZk7JIPZiSi6eUxPiCMP9M/pw==
         
     | 
| 
       50 
48 
     | 
    
         
             
              -----END CERTIFICATE-----
         
     | 
| 
       51 
     | 
    
         
            -
            date:  
     | 
| 
      
 49 
     | 
    
         
            +
            date: 2025-05-01 00:00:00.000000000 Z
         
     | 
| 
       52 
50 
     | 
    
         
             
            dependencies:
         
     | 
| 
       53 
51 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       54 
52 
     | 
    
         
             
              name: rake
         
     | 
| 
         @@ -120,16 +118,16 @@ files: 
     | 
|
| 
       120 
118 
     | 
    
         
             
            - lib/rspec/support/version.rb
         
     | 
| 
       121 
119 
     | 
    
         
             
            - lib/rspec/support/warnings.rb
         
     | 
| 
       122 
120 
     | 
    
         
             
            - lib/rspec/support/with_keywords_when_needed.rb
         
     | 
| 
       123 
     | 
    
         
            -
            homepage: https://github.com/rspec/rspec 
     | 
| 
      
 121 
     | 
    
         
            +
            homepage: https://github.com/rspec/rspec
         
     | 
| 
       124 
122 
     | 
    
         
             
            licenses:
         
     | 
| 
       125 
123 
     | 
    
         
             
            - MIT
         
     | 
| 
       126 
124 
     | 
    
         
             
            metadata:
         
     | 
| 
       127 
     | 
    
         
            -
              bug_tracker_uri: https://github.com/rspec/rspec 
     | 
| 
       128 
     | 
    
         
            -
              changelog_uri: https://github.com/rspec/rspec 
     | 
| 
      
 125 
     | 
    
         
            +
              bug_tracker_uri: https://github.com/rspec/rspec/issues
         
     | 
| 
      
 126 
     | 
    
         
            +
              changelog_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.3/rspec-support/Changelog.md
         
     | 
| 
       129 
127 
     | 
    
         
             
              documentation_uri: https://rspec.info/documentation/
         
     | 
| 
       130 
128 
     | 
    
         
             
              mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
         
     | 
| 
       131 
     | 
    
         
            -
               
     | 
| 
       132 
     | 
    
         
            -
             
     | 
| 
      
 129 
     | 
    
         
            +
              rubygems_mfa_required: 'true'
         
     | 
| 
      
 130 
     | 
    
         
            +
              source_code_uri: https://github.com/rspec/rspec/blob/rspec-support-v3.13.3/rspec-support
         
     | 
| 
       133 
131 
     | 
    
         
             
            rdoc_options:
         
     | 
| 
       134 
132 
     | 
    
         
             
            - "--charset=UTF-8"
         
     | 
| 
       135 
133 
     | 
    
         
             
            require_paths:
         
     | 
| 
         @@ -145,8 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       145 
143 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       146 
144 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       147 
145 
     | 
    
         
             
            requirements: []
         
     | 
| 
       148 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
       149 
     | 
    
         
            -
            signing_key: 
         
     | 
| 
      
 146 
     | 
    
         
            +
            rubygems_version: 3.6.2
         
     | 
| 
       150 
147 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       151 
     | 
    
         
            -
            summary: rspec-support-3. 
     | 
| 
      
 148 
     | 
    
         
            +
            summary: rspec-support-3.13.3
         
     | 
| 
       152 
149 
     | 
    
         
             
            test_files: []
         
     | 
    
        metadata.gz.sig
    CHANGED
    
    | 
         Binary file 
     |