Sha256: 045b99378a31cbf41342d53a87f719577d7f7faf56ed1a4d719a5e0527435ee0
Contents?: true
Size: 524 Bytes
Versions: 16
Compression:
Stored size: 524 Bytes
Contents
# frozen_string_literal: true require 'rubygems' begin gem 'rdoc' rescue Gem::LoadError # swallow else # This will force any deps that 'rdoc' might have # (such as json) that are ambiguous to be activated, which # is important because we end up using Specification.reset # and we don't want the warning it pops out. Gem.finish_resolve end begin require 'rdoc/rubygems_hook' module Gem RDoc = ::RDoc::RubygemsHook end Gem.done_installing(&Gem::RDoc.method(:generation_hook)) rescue LoadError end
Version data entries
16 entries across 16 versions & 1 rubygems