From 24a03de8bfeccefe1e58c23bcb0fb917200c61f9 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 31 Jan 2014 16:42:53 +0100 Subject: [PATCH] core: Only load default and plugin Bundler groups to avoid dev deps --- bin/vagrant | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/vagrant b/bin/vagrant index 21c22fedb..aed4d63ca 100755 --- a/bin/vagrant +++ b/bin/vagrant @@ -57,7 +57,7 @@ end # Setup our dependencies by initializing Bundler. If we're using plugins, # then also initialize the paths to the plugins. require "bundler" -Bundler.setup +Bundler.setup(:default, :plugins) # Stdout/stderr should not buffer output $stdout.sync = true