1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

url is not required here

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2014-12-24 03:06:59 +00:00
parent 3fa6e72642
commit 7979a5ad08

View file

@ -8,7 +8,7 @@ class Downloader
end
class RubyGems < self
def self.download(url, name, dir = nil, ims = true, options = {})
def self.download(name, dir = nil, ims = true, options = {})
options[:ssl_ca_cert] = Dir.glob(File.expand_path("../lib/rubygems/ssl_certs/*.pem", File.dirname(__FILE__)))
super("https://rubygems.org/downloads/#{name}", name, dir, ims, options)
end