summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/bundler/plugin.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/bundler/plugin.rb b/lib/bundler/plugin.rb
index fbbb5950f7..e3f698ec43 100644
--- a/lib/bundler/plugin.rb
+++ b/lib/bundler/plugin.rb
@@ -1,7 +1,5 @@
# frozen_string_literal: true
-require "set"
-
require_relative "plugin/api"
module Bundler
@@ -27,7 +25,7 @@ module Bundler
@sources = {}
@commands = {}
@hooks_by_event = Hash.new {|h, k| h[k] = [] }
- @loaded_plugin_names = Set.new
+ @loaded_plugin_names = []
end
reset!