ruby-changes:74231
From: Nobuyoshi <ko1@a...>
Date: Mon, 24 Oct 2022 18:38:30 +0900 (JST)
Subject: [ruby-changes:74231] 6cca8a0ceb (master): Strip trailing spaces [ci skip]
https://git.ruby-lang.org/ruby.git/commit/?id=6cca8a0ceb From 6cca8a0ceb7936d110aca600225ede87864df4e7 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Mon, 24 Oct 2022 18:36:40 +0900 Subject: Strip trailing spaces [ci skip] --- tool/update-bundled_gems.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/tool/update-bundled_gems.rb b/tool/update-bundled_gems.rb index 5ec0528721..c8927b878d 100755 --- a/tool/update-bundled_gems.rb +++ b/tool/update-bundled_gems.rb @@ -19,4 +19,5 @@ unless /^[^#]/ !~ (gem = $F[0]) https://github.com/ruby/ruby/blob/trunk/tool/update-bundled_gems.rb#L19 f = [gem.name, gem.version.to_s, uri, *$F[3..-1]] $_.gsub!(/\S+\s*/) {|s| (f.shift || "").ljust(s.size)} $_ = [$_, *f].join(" ") unless f.empty? + $_.rstrip! end -- cgit v1.2.3 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/