Hello community,
here is the log from the commit of package rubygem-rspec-support for
openSUSE:Factory checked in at 2019-07-22 12:16:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rspec-support (Old)
and /work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rspec-support"
Mon Jul 22 12:16:33 2019 rev:10 rq:714004 version:3.8.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/rubygem-rspec-support/rubygem-rspec-support.changes
2018-11-01 18:51:34.277947199 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-rspec-support.new.4126/rubygem-rspec-support.changes
2019-07-22 12:16:34.659725068 +0200
@@ -1,0 +2,24 @@
+Mon Jul 8 08:18:52 UTC 2019 - Manuel Schnitzer <[email protected]>
+
+- updated to version 3.8.2
+
+ [Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.8.1...v3.8.2)
+
+ Bug Fixes:
+
+ * Ensure that optional hash arguments are recognised correctly vs keyword
+ arguments. (Evgeni Dzhelyov, #366)
+ * Ensure that an empty hash is recognised as empty keyword arguments when
+ applicable. (Thomas Walpole, #375)
+ * Ensure that diffing truthy values produce diffs consistently.
+ (Lucas Nestor, #377)
+
+ ### 3.8.1 / 2019-03-03
+ [Full
Changelog](http://github.com/rspec/rspec-support/compare/v3.8.0...v3.8.1)
+
+ Bug Fixes:
+
+ * Ensure that inspecting a `SimpleDelegator` based object works regardless of
+ visibilty of the `__getobj__` method. (Jon Rowe, #369)
+
+-------------------------------------------------------------------
Old:
----
rspec-support-3.8.0.gem
New:
----
rspec-support-3.8.2.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-rspec-support.spec ++++++
--- /var/tmp/diff_new_pack.ZLVmGc/_old 2019-07-22 12:16:36.111724673 +0200
+++ /var/tmp/diff_new_pack.ZLVmGc/_new 2019-07-22 12:16:36.119724671 +0200
@@ -1,7 +1,7 @@
#
# spec file for package rubygem-rspec-support
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
@@ -24,7 +24,7 @@
#
Name: rubygem-rspec-support
-Version: 3.8.0
+Version: 3.8.2
Release: 0
%define mod_name rspec-support
%define mod_full_name %{mod_name}-%{version}
++++++ rspec-support-3.8.0.gem -> rspec-support-3.8.2.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Changelog.md new/Changelog.md
--- old/Changelog.md 2018-08-04 21:48:57.000000000 +0200
+++ new/Changelog.md 2019-06-10 22:04:21.000000000 +0200
@@ -1,3 +1,23 @@
+### 3.8.2 / 2019-06-10
+[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.8.1...v3.8.2)
+
+Bug Fixes:
+
+* Ensure that optional hash arguments are recognised correctly vs keyword
+ arguments. (Evgeni Dzhelyov, #366)
+* Ensure that an empty hash is recognised as empty keyword arguments when
+ applicable. (Thomas Walpole, #375)
+* Ensure that diffing truthy values produce diffs consistently.
+ (Lucas Nestor, #377)
+
+### 3.8.1 / 2019-03-03
+[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.8.0...v3.8.1)
+
+Bug Fixes:
+
+* Ensure that inspecting a `SimpleDelegator` based object works regardless of
+ visibilty 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)
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/differ.rb
new/lib/rspec/support/differ.rb
--- old/lib/rspec/support/differ.rb 2018-08-04 21:48:57.000000000 +0200
+++ new/lib/rspec/support/differ.rb 2019-06-10 22:04:21.000000000 +0200
@@ -11,7 +11,7 @@
def diff(actual, expected)
diff = ""
- if actual && expected
+ unless actual.nil? || expected.nil?
if all_strings?(actual, expected)
if any_multiline_strings?(actual, expected)
diff = diff_as_string(coerce_to_string(actual),
coerce_to_string(expected))
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 2018-08-04
21:48:57.000000000 +0200
+++ new/lib/rspec/support/method_signature_verifier.rb 2019-06-10
22:04:21.000000000 +0200
@@ -78,7 +78,9 @@
end
def has_kw_args_in?(args)
- Hash === args.last && could_contain_kw_args?(args)
+ Hash === args.last &&
+ could_contain_kw_args?(args) &&
+ (args.last.empty? || args.last.keys.any? { |x| x.is_a?(Symbol) })
end
# Without considering what the last arg is, could it
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 2018-08-04 21:48:57.000000000
+0200
+++ new/lib/rspec/support/object_formatter.rb 2019-06-10 22:04:21.000000000
+0200
@@ -225,7 +225,7 @@
end
def inspect
- "#<#{object.class}(#{formatter.format(object.__getobj__)})>"
+ "#<#{object.class}(#{formatter.format(object.send(:__getobj__))})>"
end
end
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 2018-08-04 21:48:57.000000000
+0200
+++ new/lib/rspec/support/spec/shell_out.rb 2019-06-10 22:04:21.000000000
+0200
@@ -59,10 +59,15 @@
l =~ %r{bundler/source/rubygems} ||
# Ignore bundler + rubygems warning.
l =~ %r{site_ruby/\d\.\d\.\d/rubygems} ||
+ l =~ %r{jruby-\d\.\d\.\d\.\d/lib/ruby/stdlib/rubygems} ||
# This is required for windows for some reason
l =~ %r{lib/bundler/rubygems} ||
# This is a JRuby file that generates warnings on 9.0.3.0
- l =~ %r{lib/ruby/stdlib/jar}
+ l =~ %r{lib/ruby/stdlib/jar} ||
+ # This is a JRuby file that generates warnings on 9.1.7.0
+ l =~ %r{org/jruby/RubyKernel\.java} ||
+ # Remove blank lines
+ l == "" || l.nil?
end.join("\n")
end
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 2018-08-04 21:48:57.000000000 +0200
+++ new/lib/rspec/support/version.rb 2019-06-10 22:04:21.000000000 +0200
@@ -1,7 +1,7 @@
module RSpec
module Support
module Version
- STRING = '3.8.0'
+ STRING = '3.8.2'
end
end
end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata 2018-08-04 21:48:57.000000000 +0200
+++ new/metadata 2019-06-10 22:04:21.000000000 +0200
@@ -1,7 +1,7 @@
--- !ruby/object:Gem::Specification
name: rspec-support
version: !ruby/object:Gem::Version
- version: 3.8.0
+ version: 3.8.2
platform: ruby
authors:
- David Chelimsky
@@ -48,23 +48,9 @@
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
F3MdtaDehhjC
-----END CERTIFICATE-----
-date: 2018-08-04 00:00:00.000000000 Z
+date: 2019-06-10 00:00:00.000000000 Z
dependencies:
- !ruby/object:Gem::Dependency
- name: bundler
- requirement: !ruby/object:Gem::Requirement
- requirements:
- - - "~>"
- - !ruby/object:Gem::Version
- version: '1.3'
- type: :development
- prerelease: false
- version_requirements: !ruby/object:Gem::Requirement
- requirements:
- - - "~>"
- - !ruby/object:Gem::Version
- version: '1.3'
-- !ruby/object:Gem::Dependency
name: rake
requirement: !ruby/object:Gem::Requirement
requirements:
@@ -135,7 +121,12 @@
homepage: https://github.com/rspec/rspec-support
licenses:
- MIT
-metadata: {}
+metadata:
+ bug_tracker_uri: https://github.com/rspec/rspec-support/issues
+ changelog_uri:
https://github.com/rspec/rspec-support/blob/v3.8.2/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
post_install_message:
rdoc_options:
- "--charset=UTF-8"
@@ -152,9 +143,8 @@
- !ruby/object:Gem::Version
version: '0'
requirements: []
-rubyforge_project:
-rubygems_version: 2.6.13
+rubygems_version: 3.0.3
signing_key:
specification_version: 4
-summary: rspec-support-3.8.0
+summary: rspec-support-3.8.2
test_files: []
Binary files old/metadata.gz.sig and new/metadata.gz.sig differ