Fix bundler not requiring default group. Follow up to a2babcafd8.

This commit is contained in:
Guo Xiang Tan 2019-05-02 13:24:30 +08:00
parent 5a834a05ea
commit cf235fbd48

View File

@ -37,8 +37,16 @@ GlobalSetting.load_defaults
require 'pry-rails' if Rails.env.development?
if defined?(Bundler) && !Rails.env.production?
Bundler.require(*Rails.groups(assets: %w(development test profile)))
if defined?(Bundler)
bundler_groups = [:default]
if !Rails.env.production?
bundler_groups = bundler_groups.concat(Rails.groups(
assets: %w(development test profile)
))
end
Bundler.require(*bundler_groups)
end
module Discourse