summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-01 10:58:55 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-10-12 16:46:31 +0200
commit37ae646105e6b08bd0766bf300b74e2f38de4799 (patch)
tree093b65a42a49f64c647dd8c28ae466301d404d2e
parent95e9bd9651e718b06a6cf468a275db71dd2f8952 (diff)
downloadbundler-37ae646105e6b08bd0766bf300b74e2f38de4799.tar.gz
Strip row trailing spaces
-rw-r--r--lib/bundler/cli/outdated.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/outdated.rb b/lib/bundler/cli/outdated.rb
index 826bcdfe90..152954a4fc 100644
--- a/lib/bundler/cli/outdated.rb
+++ b/lib/bundler/cli/outdated.rb
@@ -279,7 +279,7 @@ module Bundler
def justify(row, sizes)
row.each_with_index.map do |element, index|
element.ljust(sizes[index])
- end.join(" ") + "\n"
+ end.join(" ").strip + "\n"
end
end
end