core: Only load default and plugin Bundler groups to avoid dev deps

This commit is contained in:
Mitchell Hashimoto 2014-01-31 16:42:53 +01:00
parent 8cc7d00314
commit 24a03de8bf
1 changed files with 1 additions and 1 deletions

View File

@ -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