[前][次][番号順一覧][スレッド一覧]

ruby-changes:70657

From: David <ko1@a...>
Date: Thu, 30 Dec 2021 07:02:42 +0900 (JST)
Subject: [ruby-changes:70657] 1954a95f8b (master): [rubygems/rubygems] Better way to join path components

https://git.ruby-lang.org/ruby.git/commit/?id=1954a95f8b

From 1954a95f8bf71f61ce9996a0d8a34b18bb56da3e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20Rodr=C3=ADguez?= <deivid.rodriguez@r...>
Date: Wed, 29 Dec 2021 20:53:26 +0100
Subject: [rubygems/rubygems] Better way to join path components

The current way works, but error messages show duplicate "/" in paths,
which is weird.

https://github.com/rubygems/rubygems/commit/9123deb4fa
---
 spec/bundler/support/artifice/vcr.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spec/bundler/support/artifice/vcr.rb b/spec/bundler/support/artifice/vcr.rb
index 0d51201bef8..ceb133346fb 100644
--- a/spec/bundler/support/artifice/vcr.rb
+++ b/spec/bundler/support/artifice/vcr.rb
@@ -69,7 +69,7 @@ class BundlerVCRHTTP < Net::HTTP https://github.com/ruby/ruby/blob/trunk/spec/bundler/support/artifice/vcr.rb#L69
     end
 
     def file_name_for_key(key)
-      key.join("/").gsub(/[\:*?"<>|]/, "-")
+      File.join(*key).gsub(/[\:*?"<>|]/, "-")
     end
 
     def request_pair_paths
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]