summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtool/update-bundled_gems.rb1
1 files changed, 1 insertions, 0 deletions
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])
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