From acc326b7c4867429f3ea0d96e12c0efa6bfcb079 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 18 Apr 2024 14:56:57 +0900 Subject: [PATCH] [rubygems/rubygems] Removed needless class name https://github.com/rubygems/rubygems/commit/a2f43d3756 --- lib/bundler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bundler.rb b/lib/bundler.rb index 98a58502be..50b7a0c837 100644 --- a/lib/bundler.rb +++ b/lib/bundler.rb @@ -184,7 +184,7 @@ module Bundler # Bundler.require(:test) # requires second_gem # def require(*groups) - Bundler.load_plugins + load_plugins setup(*groups).require(*groups) end