summaryrefslogtreecommitdiff
path: root/lib/rubygems/source.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2019-12-13 20:19:08 +0900
committerHiroshi SHIBATA <[email protected]>2019-12-13 20:19:33 +0900
commit82cc2843a92b286cc13afd0860a4e111d4ea2a0b ()
treea517dedd40d35540930cea7732f5a36e76a549e8 /lib/rubygems/source.rb
parent26774351dc5f494253ba031e4bc453dc4dddb2cf (diff)
Prepare to release RubyGems 3.1.0 final version.
-rw-r--r--lib/rubygems/source.rb8
1 files changed, 7 insertions, 1 deletions
@@ -1,7 +1,7 @@
# frozen_string_literal: true
autoload :FileUtils, 'fileutils'
-autoload :URI, 'uri'
##
# A Source knows how to list and fetch gems from a RubyGems marshal index.
#
@@ -11,6 +11,7 @@ autoload :URI, 'uri'
class Gem::Source
include Comparable
FILES = { # :nodoc:
:released => 'specs',
@@ -219,6 +220,11 @@ class Gem::Source
end
end
end
require 'rubygems/source/git'