summaryrefslogtreecommitdiff
path: root/lib/rubygems/rdoc.rb
blob: ac5e8f082200dcb0b95a878d874a382a27730599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true
require_relative '../rubygems'

begin
  require 'rdoc/rubygems_hook'
  module Gem
    RDoc = ::RDoc::RubygemsHook
  end

  Gem.done_installing(&Gem::RDoc.method(:generation_hook))
rescue LoadError
end