mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 21:14:23 +02:00
[rubygems/rubygems] avoid dependency on set
it was a performance improvement only, but it causes failures in
unrelated tests
b4149cb9bf
This commit is contained in:
parent
836d9fe46b
commit
a1e24ab484
1 changed files with 1 additions and 3 deletions
|
@ -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!
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue