From 914d177346815a6516133e9471cb2ab8e1346250 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 7 Mar 2014 10:44:00 -0800 Subject: [PATCH] core: Fix misleading wording in pre-rubygems [GH-3078] --- lib/vagrant/pre-rubygems.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/vagrant/pre-rubygems.rb b/lib/vagrant/pre-rubygems.rb index 5ea8a28e6..4d7e9806d 100644 --- a/lib/vagrant/pre-rubygems.rb +++ b/lib/vagrant/pre-rubygems.rb @@ -6,9 +6,10 @@ if defined?(Bundler) require "bundler/shared_helpers" if Bundler::SharedHelpers.in_bundle? puts "Vagrant appears to be running in a Bundler environment. Your " - puts "existing Gemfile will be used. Vagrant will not auto-load any plugins." - puts "You must load any plugins you want manually in a Vagrantfile. You can" - puts "force Vagrant to take over with VAGRANT_FORCE_BUNDLER." + puts "existing Gemfile will be used. Vagrant will not auto-load any plugins" + puts "installed with `vagrant plugin`. Vagrant will autoload any plugins in" + puts "the 'plugins' group in your Gemfile. You can force Vagrant to take over" + puts "with VAGRANT_FORCE_BUNDLER." puts end end