summaryrefslogtreecommitdiff
path: root/lib/bundler/env.rb
diff options
context:
space:
mode:
authorAgis Anastasopoulos <agis.anast@gmail.com>2016-01-02 14:24:59 +0200
committerAgis Anastasopoulos <agis.anast@gmail.com>2016-01-02 15:25:22 +0200
commit03351b6312919583a2222b2a489c91b4a22e56cc (patch)
treea729a4d427fdfd0370a8690adc2f7cb7c68a1d5e /lib/bundler/env.rb
parent6b0bc181cd788d4dec7cbaacb51589d68b7cf2a6 (diff)
downloadbundler-03351b6312919583a2222b2a489c91b4a22e56cc.tar.gz
Make `bundle env` output consistentenv-output-fix
We don't use ":" anywhere else on `bundle env` output.
Diffstat (limited to 'lib/bundler/env.rb')
-rw-r--r--lib/bundler/env.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/env.rb b/lib/bundler/env.rb
index c6ecdd0f69..6942eccaa8 100644
--- a/lib/bundler/env.rb
+++ b/lib/bundler/env.rb
@@ -43,7 +43,7 @@ module Bundler
if print_gemspecs
dsl = Dsl.new.tap {|d| d.eval_gemfile(Bundler.default_gemfile) }
dsl.gemspecs.each do |gs|
- out << "\n#{Pathname.new(gs).basename}:"
+ out << "\n#{Pathname.new(gs).basename}"
out << "\n\n " << read_file(gs).gsub(/\n/, "\n ") << "\n"
end
end