aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems/indexer.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-04-25 14:09:24 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-05-08 14:13:29 +0900
commit314d7f897ca02c173fa0e3b3e36c69482f71a358 (patch)
tree8f15f5083e13cf2617fed454055e6bb953df668a /lib/rubygems/indexer.rb
parentb5a0db8be0086f2d245fd77fd48f89e359d71312 (diff)
downloadruby-314d7f897ca02c173fa0e3b3e36c69482f71a358.tar.gz
Remove `builder` gem requirement for `gem regenerate_index`
This requirement was introduced 14 years ago in 7ce7039b390440754954df5efea619e9f57ef823, and I don't think it's necessary anymore. I made several tests introducing UTF-8 characters in gemspec files and generating indexes out of them, and couldn't find any issues. Gemspecs are read with UTF-8 encoding these days.
Diffstat (limited to 'lib/rubygems/indexer.rb')
-rw-r--r--lib/rubygems/indexer.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/rubygems/indexer.rb b/lib/rubygems/indexer.rb
index 4d199868fb..75bd824c9e 100644
--- a/lib/rubygems/indexer.rb
+++ b/lib/rubygems/indexer.rb
@@ -11,11 +11,6 @@ rescue LoadError # this rubygems + old ruby
else # this rubygems + ruby trunk with bundler
rescue_exceptions << Bundler::GemfileNotFound
end
-begin
- gem 'builder'
- require 'builder/xchar'
-rescue *rescue_exceptions
-end
##
# Top level class for building the gem repository index.
@@ -62,11 +57,6 @@ class Gem::Indexer
require 'tmpdir'
require 'zlib'
- unless defined?(Builder::XChar)
- raise "Gem::Indexer requires that the XML Builder library be installed:" +
- "\n\tgem install builder"
- end
-
options = { :build_modern => true }.merge options
@build_modern = options[:build_modern]