diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-23 00:20:49 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-23 00:20:49 +0000 |
commit | ae19a18996727954cba2da90ab816e2d5023822a (patch) | |
tree | 158b316a17cb6618235df3ce4cf27c6108240084 /lib/rubygems.rb | |
parent | 9b9fe826fd1ce825af3503f39643f75910307a51 (diff) | |
download | ruby-ae19a18996727954cba2da90ab816e2d5023822a.tar.gz |
Merge RubyGems 3.0.1 from rubygems/rubygems.
It fixed the issues of RubyGems 3.0.0.
https://blog.rubygems.org/2018/12/23/3.0.1-released.html
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rubygems.rb')
-rw-r--r-- | lib/rubygems.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rubygems.rb b/lib/rubygems.rb index abf2e9b5da..118268dce2 100644 --- a/lib/rubygems.rb +++ b/lib/rubygems.rb @@ -9,7 +9,7 @@ require 'rbconfig' module Gem - VERSION = "3.0.0".freeze + VERSION = "3.0.1".freeze end # Must be first since it unloads the prelude from 1.9.2 @@ -572,7 +572,7 @@ An Array (#{env.inspect}) was passed in from #{caller[3]} #++ def self.find_home - Dir.home + Dir.home.dup rescue if Gem.win_platform? File.expand_path File.join(ENV['HOMEDRIVE'] || ENV['SystemDrive'], '/') |