summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2026-01-09 12:30:13 +0900
committergit <svn-admin@ruby-lang.org>2026-02-13 01:00:00 +0000
commit7a88a9085d15bed53aff722657d8a0bc955dd042 (patch)
treea41dfe6ad3c0a07d00ae1247e8a1df57c697fbf8
parenta88475d6cb6c6a917b56be496cb83733cadd1d27 (diff)
[ruby/rubygems] Make DEFAULT_INSTALL_EXTENSION_IN_LIB false by default to stop installing extensions into lib directory
https://github.com/ruby/rubygems/commit/1614b036f7
-rw-r--r--lib/rubygems/config_file.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/rubygems/config_file.rb b/lib/rubygems/config_file.rb
index f2c90cce3c..d34480f474 100644
--- a/lib/rubygems/config_file.rb
+++ b/lib/rubygems/config_file.rb
@@ -47,8 +47,7 @@ class Gem::ConfigFile
DEFAULT_CONCURRENT_DOWNLOADS = 8
DEFAULT_CERT_EXPIRATION_LENGTH_DAYS = 365
DEFAULT_IPV4_FALLBACK_ENABLED = false
- # TODO: Use false as default value for this option in RubyGems 4.0
- DEFAULT_INSTALL_EXTENSION_IN_LIB = true
+ DEFAULT_INSTALL_EXTENSION_IN_LIB = false
DEFAULT_GLOBAL_GEM_CACHE = false
##