diff options
author | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-04-19 23:07:48 +0000 |
---|---|---|
committer | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-04-19 23:07:48 +0000 |
commit | 064bf602e0f42a925f470c219962e3a430bc5ca8 () | |
tree | 908b5285fcb003da1dafd069cb6f174d203c9205 /lib/rubygems/config_file.rb | |
parent | 83ed985182c5bbaba2c2a3c32bf1a4ecb6c0edde (diff) |
* lib/rubygems: Update to RubyGems 1.8.23 which contains security
fixes: RubyGems now disallows redirection from HTTPS to HTTP. RubyGems now verifies SSL connections. See https://.com/rubygems/rubygems/blob/1.8/History.txt for changes since 1.8.22. * test/rubygems: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/rubygems/config_file.rb | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -131,6 +131,16 @@ class Gem::ConfigFile attr_reader :api_keys ## # Create the config file object. +args+ is the list of arguments # from the command line. # @@ -192,6 +202,8 @@ class Gem::ConfigFile @path = @hash[:gempath] if @hash.key? :gempath @update_sources = @hash[:update_sources] if @hash.key? :update_sources @verbose = @hash[:verbose] if @hash.key? :verbose load_api_keys |