summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-11-09 19:36:54 +0100
committerAaron Bauman <bman@gentoo.org>2019-11-09 22:59:33 -0500
commitd7cfa1cd24f69617825a8f6cb9f6198cc81b7e1b (patch)
treea314e61a524df1f70d7229e3db16b586bed3e6a5 /dev-ruby/rspec-core
parentdev-ruby/json: remove unused patches (diff)
downloadgentoo-d7cfa1cd24f69617825a8f6cb9f6198cc81b7e1b.tar.gz
gentoo-d7cfa1cd24f69617825a8f6cb9f6198cc81b7e1b.tar.bz2
gentoo-d7cfa1cd24f69617825a8f6cb9f6198cc81b7e1b.zip
dev-ruby/rspec-core: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-ruby/rspec-core')
-rw-r--r--dev-ruby/rspec-core/files/rspec-core-3.8.0-ruby26.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-ruby/rspec-core/files/rspec-core-3.8.0-ruby26.patch b/dev-ruby/rspec-core/files/rspec-core-3.8.0-ruby26.patch
deleted file mode 100644
index 7c4bc9f7e50d..000000000000
--- a/dev-ruby/rspec-core/files/rspec-core-3.8.0-ruby26.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 5e6171ee7dadd520991153009eb01d7be3c82e7e Mon Sep 17 00:00:00 2001
-From: "Keiji, Yoshimi" <walf443@gmail.com>
-Date: Mon, 10 Dec 2018 22:40:16 +0900
-Subject: [PATCH] Fixed warnings: lib/rspec/core/metadata.rb:172: warning:
- Object#=~ is deprecated; it always returns nil (#2582)
-
----
- lib/rspec/core/metadata.rb | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/rspec/core/metadata.rb b/lib/rspec/core/metadata.rb
-index 094a7a3b3..c68627ac5 100644
---- a/lib/rspec/core/metadata.rb
-+++ b/lib/rspec/core/metadata.rb
-@@ -169,7 +169,7 @@ def file_path_and_line_number_from(backtrace)
- end
-
- def description_separator(parent_part, child_part)
-- if parent_part.is_a?(Module) && child_part =~ /^(#|::|\.)/
-+ if parent_part.is_a?(Module) && /^(?:#|::|\.)/.match(child_part.to_s)
- ''.freeze
- else
- ' '.freeze