Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package rubygem-rspec-support for
openSUSE:Factory checked in at 2024-06-22 13:23:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-support (Old)
and /work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.18349 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rspec-support"
Sat Jun 22 13:23:06 2024 rev:21 rq:1182467 version:3.13.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-rspec-support/rubygem-rspec-support.changes
2023-11-15 21:07:19.697465198 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.18349/rubygem-rspec-support.changes
2024-06-22 13:23:32.290918718 +0200
@@ -1,0 +2,5 @@
+Fri Jun 21 10:38:11 UTC 2024 - Dan Äermák <[email protected]>
+
+- New upstream release 3.13.1, see bundled Changelog.md
+
+-------------------------------------------------------------------
Old:
----
rspec-support-3.12.1.gem
New:
----
rspec-support-3.13.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-rspec-support.spec ++++++
--- /var/tmp/diff_new_pack.crM5OF/_old 2024-06-22 13:23:32.782936708 +0200
+++ /var/tmp/diff_new_pack.crM5OF/_new 2024-06-22 13:23:32.786936855 +0200
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-rspec-support
#
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
#
Name: rubygem-rspec-support
-Version: 3.12.1
+Version: 3.13.1
Release: 0
%define mod_name rspec-support
%define mod_full_name %{mod_name}-%{version}
++++++ rspec-support-3.12.1.gem -> rspec-support-3.13.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Changelog.md new/Changelog.md
--- old/Changelog.md 2023-06-26 17:51:45.000000000 +0200
+++ new/Changelog.md 2024-02-23 19:47:19.000000000 +0100
@@ -1,5 +1,30 @@
### Development
-[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.12.1...3-12-maintenance)
+[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.13.1...main)
+
+### 3.13.1 / 2024-02-23
+[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.13.0...v3.13.1)
+
+Bug Fixes:
+
+* Exclude ruby internal require warnings from
`RSpec::Support::CallerFilter#first_non_rspec_line`.
+ (Jon Rowe, #593)
+
+### 3.13.0 / 2024-02-04
+[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.12.2...v3.13.0)
+
+Enchancements
+
+* Add `RubyFeatures#supports_syntax_suggest?`. (Jon Rowe, #571)
+
+### 3.12.2 / 2024-02-04
+[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.12.1...v3.12.2)
+
+Bug Fixes:
+
+* Properly surface errors from `in_sub_process`. (Jon Rowe, #575)
+* Add magic comment for freezing string literals. (Josh Nichols, #586)
+* Allow string keys for keyword arguments during verification of method
+ signatures, (but only on Ruby 3+). (@malcolmohare, #591)
### 3.12.1 / 2023-06-26
[Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.12.0...v3.12.1)
@@ -126,7 +151,7 @@
Bug Fixes:
* Ensure that inspecting a `SimpleDelegator` based object works regardless of
- visibilty of the `__getobj__` method. (Jon Rowe, #369)
+ visibility of the `__getobj__` method. (Jon Rowe, #369)
### 3.8.0 / 2018-08-04
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.7.1...v3.8.0)
@@ -234,7 +259,7 @@
Enhancements:
-* Improve formatting of `Delegator` based objects (e.g. `SimpleDelgator`) in
+* Improve formatting of `Delegator` based objects (e.g. `SimpleDelegator`) in
failure messages and diffs. (Andrew Horner, #215)
* Add `ComparableVersion`. (Yuji Nakayama, #245)
* Add `Ripper` support detection. (Yuji Nakayama, #245)
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Binary files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Binary files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/caller_filter.rb
new/lib/rspec/support/caller_filter.rb
--- old/lib/rspec/support/caller_filter.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/caller_filter.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
RSpec::Support.require_rspec_support "ruby_features"
module RSpec
@@ -25,7 +27,7 @@
# when `CallerFilter.first_non_rspec_line` is called from the top level of
a required
# file, but it depends on if rubygems is loaded or not. We don't want to
have to deal
# with this complexity in our `RSpec.deprecate` calls, so we ignore it
here.
- IGNORE_REGEX = Regexp.union(LIB_REGEX,
"rubygems/core_ext/kernel_require.rb", "<internal:")
+ IGNORE_REGEX = Regexp.union(LIB_REGEX,
"rubygems/core_ext/kernel_require.rb", "<internal:",
%r{/lib/ruby/[^/]+/bundled_gems\.rb})
if RSpec::Support::RubyFeatures.caller_locations_supported?
# This supports args because it's more efficient when the caller
specifies
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/comparable_version.rb
new/lib/rspec/support/comparable_version.rb
--- old/lib/rspec/support/comparable_version.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/comparable_version.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
# @private
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/differ.rb
new/lib/rspec/support/differ.rb
--- old/lib/rspec/support/differ.rb 2023-06-26 17:51:45.000000000 +0200
+++ new/lib/rspec/support/differ.rb 2024-02-23 19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
RSpec::Support.require_rspec_support 'encoded_string'
RSpec::Support.require_rspec_support 'hunk_generator'
RSpec::Support.require_rspec_support "object_formatter"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/directory_maker.rb
new/lib/rspec/support/directory_maker.rb
--- old/lib/rspec/support/directory_maker.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/directory_maker.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
RSpec::Support.require_rspec_support 'ruby_features'
module RSpec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/encoded_string.rb
new/lib/rspec/support/encoded_string.rb
--- old/lib/rspec/support/encoded_string.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/encoded_string.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
# @private
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/fuzzy_matcher.rb
new/lib/rspec/support/fuzzy_matcher.rb
--- old/lib/rspec/support/fuzzy_matcher.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/fuzzy_matcher.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
# Provides a means to fuzzy-match between two arbitrary objects.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/hunk_generator.rb
new/lib/rspec/support/hunk_generator.rb
--- old/lib/rspec/support/hunk_generator.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/hunk_generator.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'diff/lcs'
require 'diff/lcs/hunk'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/matcher_definition.rb
new/lib/rspec/support/matcher_definition.rb
--- old/lib/rspec/support/matcher_definition.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/matcher_definition.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
# @private
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/method_signature_verifier.rb
new/lib/rspec/support/method_signature_verifier.rb
--- old/lib/rspec/support/method_signature_verifier.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/method_signature_verifier.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'rspec/support'
RSpec::Support.require_rspec_support "ruby_features"
RSpec::Support.require_rspec_support "matcher_definition"
@@ -82,7 +84,7 @@
def has_kw_args_in?(args)
Hash === args.last &&
could_contain_kw_args?(args) &&
- (args.last.empty? || args.last.keys.any? { |x| x.is_a?(Symbol) })
+ (RubyFeatures.kw_arg_separation? || args.last.empty? ||
args.last.keys.any? { |x| x.is_a?(Symbol) })
end
# Without considering what the last arg is, could it
@@ -361,7 +363,7 @@
end
def split_args(*args)
- kw_args = if @signature.has_kw_args_in?(args)
+ kw_args = if @signature.has_kw_args_in?(args) &&
!RubyFeatures.kw_arg_separation?
last = args.pop
non_kw_args = last.reject { |k, _| k.is_a?(Symbol) }
if non_kw_args.empty?
@@ -370,6 +372,8 @@
args << non_kw_args
last.select { |k, _| k.is_a?(Symbol) }.keys
end
+ elsif @signature.has_kw_args_in?(args) &&
RubyFeatures.kw_arg_separation?
+ args.pop.keys
else
[]
end
@@ -378,7 +382,7 @@
end
end
- # Figures out wether a given method can accept various arguments.
+ # Figures out whether a given method can accept various arguments.
# Surprisingly non-trivial.
#
# @private
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/mutex.rb
new/lib/rspec/support/mutex.rb
--- old/lib/rspec/support/mutex.rb 2023-06-26 17:51:45.000000000 +0200
+++ new/lib/rspec/support/mutex.rb 2024-02-23 19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
# On 1.8.7, it's in the stdlib.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/object_formatter.rb
new/lib/rspec/support/object_formatter.rb
--- old/lib/rspec/support/object_formatter.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/object_formatter.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
RSpec::Support.require_rspec_support 'matcher_definition'
module RSpec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/recursive_const_methods.rb
new/lib/rspec/support/recursive_const_methods.rb
--- old/lib/rspec/support/recursive_const_methods.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/recursive_const_methods.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
# Provides recursive constant lookup methods useful for
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/reentrant_mutex.rb
new/lib/rspec/support/reentrant_mutex.rb
--- old/lib/rspec/support/reentrant_mutex.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/reentrant_mutex.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
# Allows a thread to lock out other threads from a critical section of
code,
@@ -62,7 +64,7 @@
# On 1.9 and up, this is in core, so we just use the real one
class Mutex < ::Mutex
# If you mock Mutex.new you break our usage of Mutex, so
- # instead we capture the original method to return Mutexs.
+ # instead we capture the original method to return Mutexes.
NEW_MUTEX_METHOD = Mutex.method(:new)
def self.new
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/ruby_features.rb
new/lib/rspec/support/ruby_features.rb
--- old/lib/rspec/support/ruby_features.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/ruby_features.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'rbconfig'
RSpec::Support.require_rspec_support "comparable_version"
@@ -93,6 +95,27 @@
false
end
end
+
+ if RUBY_VERSION.to_f >= 3.2
+ def supports_syntax_suggest?
+ true
+ end
+ else
+ def supports_syntax_suggest?
+ false
+ end
+ end
+
+ if RUBY_VERSION.to_f >= 3.0
+ #
https://rubyreferences.github.io/rubychanges/3.0.html#keyword-arguments-are-now-fully-separated-from-positional-arguments
+ def kw_arg_separation?
+ true
+ end
+ else
+ def kw_arg_separation?
+ false
+ end
+ end
if RUBY_VERSION.to_f >= 2.7
def supports_taint?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/source/location.rb
new/lib/rspec/support/source/location.rb
--- old/lib/rspec/support/source/location.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/source/location.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
class Source
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/source/node.rb
new/lib/rspec/support/source/node.rb
--- old/lib/rspec/support/source/node.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/source/node.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
RSpec::Support.require_rspec_support 'source/location'
module RSpec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/source/token.rb
new/lib/rspec/support/source/token.rb
--- old/lib/rspec/support/source/token.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/source/token.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
RSpec::Support.require_rspec_support 'source/location'
module RSpec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/source.rb
new/lib/rspec/support/source.rb
--- old/lib/rspec/support/source.rb 2023-06-26 17:51:45.000000000 +0200
+++ new/lib/rspec/support/source.rb 2024-02-23 19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
RSpec::Support.require_rspec_support 'encoded_string'
RSpec::Support.require_rspec_support 'ruby_features'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/deprecation_helpers.rb
new/lib/rspec/support/spec/deprecation_helpers.rb
--- old/lib/rspec/support/spec/deprecation_helpers.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/spec/deprecation_helpers.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpecHelpers
def expect_deprecation_with_call_site(file, line, snippet=//)
expect(RSpec.configuration.reporter).to receive(:deprecation).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/diff_helpers.rb
new/lib/rspec/support/spec/diff_helpers.rb
--- old/lib/rspec/support/spec/diff_helpers.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/spec/diff_helpers.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'diff/lcs'
module RSpec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/formatting_support.rb
new/lib/rspec/support/spec/formatting_support.rb
--- old/lib/rspec/support/spec/formatting_support.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/spec/formatting_support.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
module FormattingSupport
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/in_sub_process.rb
new/lib/rspec/support/spec/in_sub_process.rb
--- old/lib/rspec/support/spec/in_sub_process.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/spec/in_sub_process.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
module InSubProcess
@@ -11,6 +13,10 @@
exception_reader, exception_writer = IO.pipe
result_reader, result_writer = IO.pipe
+ # Set binary mode to avoid errors surrounding ascii-8bit to utf-8
conversion
+ # this happens with warnings on rspec-rails for example
+ [exception_reader, exception_writer, result_reader,
result_writer].each { |io| io.binmode }
+
pid = Process.fork do
warning_preventer = $stderr =
RSpec::Support::StdErrSplitter.new($stderr)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/library_wide_checks.rb
new/lib/rspec/support/spec/library_wide_checks.rb
--- old/lib/rspec/support/spec/library_wide_checks.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/spec/library_wide_checks.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'rspec/support/spec/shell_out'
module RSpec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/shell_out.rb
new/lib/rspec/support/spec/shell_out.rb
--- old/lib/rspec/support/spec/shell_out.rb 2023-06-26 17:51:45.000000000
+0200
+++ new/lib/rspec/support/spec/shell_out.rb 2024-02-23 19:47:19.000000000
+0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'open3'
require 'rake/file_utils'
require 'shellwords'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/stderr_splitter.rb
new/lib/rspec/support/spec/stderr_splitter.rb
--- old/lib/rspec/support/spec/stderr_splitter.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/spec/stderr_splitter.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'stringio'
module RSpec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/string_matcher.rb
new/lib/rspec/support/spec/string_matcher.rb
--- old/lib/rspec/support/spec/string_matcher.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/spec/string_matcher.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'rspec/matchers'
# Special matcher for comparing encoded strings so that
# we don't run any expectation failures through the Differ,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/with_isolated_directory.rb
new/lib/rspec/support/spec/with_isolated_directory.rb
--- old/lib/rspec/support/spec/with_isolated_directory.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/spec/with_isolated_directory.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'tmpdir'
RSpec.shared_context "isolated directory" do
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec/with_isolated_stderr.rb
new/lib/rspec/support/spec/with_isolated_stderr.rb
--- old/lib/rspec/support/spec/with_isolated_stderr.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/spec/with_isolated_stderr.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
module WithIsolatedStdErr
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/spec.rb
new/lib/rspec/support/spec.rb
--- old/lib/rspec/support/spec.rb 2023-06-26 17:51:45.000000000 +0200
+++ new/lib/rspec/support/spec.rb 2024-02-23 19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'rspec/support'
require 'rspec/support/spec/in_sub_process'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/version.rb
new/lib/rspec/support/version.rb
--- old/lib/rspec/support/version.rb 2023-06-26 17:51:45.000000000 +0200
+++ new/lib/rspec/support/version.rb 2024-02-23 19:47:19.000000000 +0100
@@ -1,7 +1,9 @@
+# frozen_string_literal: true
+
module RSpec
module Support
module Version
- STRING = '3.12.1'
+ STRING = '3.13.1'
end
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/warnings.rb
new/lib/rspec/support/warnings.rb
--- old/lib/rspec/support/warnings.rb 2023-06-26 17:51:45.000000000 +0200
+++ new/lib/rspec/support/warnings.rb 2024-02-23 19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
require 'rspec/support'
RSpec::Support.require_rspec_support "caller_filter"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support/with_keywords_when_needed.rb
new/lib/rspec/support/with_keywords_when_needed.rb
--- old/lib/rspec/support/with_keywords_when_needed.rb 2023-06-26
17:51:45.000000000 +0200
+++ new/lib/rspec/support/with_keywords_when_needed.rb 2024-02-23
19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
RSpec::Support.require_rspec_support("method_signature_verifier")
module RSpec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/lib/rspec/support.rb new/lib/rspec/support.rb
--- old/lib/rspec/support.rb 2023-06-26 17:51:45.000000000 +0200
+++ new/lib/rspec/support.rb 2024-02-23 19:47:19.000000000 +0100
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module RSpec
module Support
# @api private
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2023-06-26 17:51:45.000000000 +0200
+++ new/metadata 2024-02-23 19:47:19.000000000 +0100
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: rspec-support
version: !ruby/object:Gem::Version
- version: 3.12.1
+ version: 3.13.1
platform: ruby
authors:
- David Chelimsky
@@ -48,7 +48,7 @@
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
F3MdtaDehhjC
-----END CERTIFICATE-----
-date: 2023-06-26 00:00:00.000000000 Z
+date: 2024-02-23 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
name: rake
@@ -125,7 +125,7 @@
- MIT
metadata:
bug_tracker_uri: https://github.com/rspec/rspec-support/issues
- changelog_uri:
https://github.com/rspec/rspec-support/blob/v3.12.1/Changelog.md
+ changelog_uri:
https://github.com/rspec/rspec-support/blob/v3.13.1/Changelog.md
documentation_uri: https://rspec.info/documentation/
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
source_code_uri: https://github.com/rspec/rspec-support
@@ -145,8 +145,8 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubygems_version: 3.4.1
+rubygems_version: 3.5.6
signing_key:
specification_version: 4
-summary: rspec-support-3.12.1
+summary: rspec-support-3.13.1
test_files: []
Binary files old/metadata.gz.sig and new/metadata.gz.sig differ