summaryrefslogtreecommitdiff
path: root/tool/downloader.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-24 03:06:59 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-24 03:06:59 +0000
commit7979a5ad085508a759216c7831dcff0e5d76fe40 (patch)
treef87e29dac870abc052d8e7ebc217346616cca89e /tool/downloader.rb
parent3fa6e7264246131f14beb6a6572cc067f5260279 (diff)
url is not required here
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/downloader.rb')
-rw-r--r--tool/downloader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/downloader.rb b/tool/downloader.rb
index 51e4217bb0..8f37c9823f 100644
--- a/tool/downloader.rb
+++ b/tool/downloader.rb
@@ -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