aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rubygems/gem_openssl.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-05 01:00:01 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-05 01:00:01 +0000
commit3434676e9e3c87c39fe4a8c411a041449efc7446 (patch)
tree1dabd9705561ef803bb9f62e6d8e3eaf0618a1cb /lib/rubygems/gem_openssl.rb
parentd24997cce12d27cec767ca7091a076df1b2319db (diff)
downloadruby-3434676e9e3c87c39fe4a8c411a041449efc7446.tar.gz
* lib/rubygems: Import RubyGems 1.8.7:
Added missing require for `gem uninstall --format-executable`. The correct name of the executable being uninstalled is now displayed with --format-executable. Fixed `gem unpack uninstalled_gem` default version picker. RubyGems no longer claims a nonexistent gem can be uninstalled. `gem which` no longer claims directories are requirable files. `gem cleanup` continues cleaning up gems if one can't be uninstalled due to permissions. Issue #82. Gem repository directories are no longer created world-writable. Patch by Sakuro OZAWA. [Ruby 1.9 - Bug #4930] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32852 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rubygems/gem_openssl.rb')
-rw-r--r--lib/rubygems/gem_openssl.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/rubygems/gem_openssl.rb b/lib/rubygems/gem_openssl.rb
index 9d5fa4ac77..682058f2c1 100644
--- a/lib/rubygems/gem_openssl.rb
+++ b/lib/rubygems/gem_openssl.rb
@@ -36,6 +36,8 @@ module Gem
end
end
+# :stopdoc:
+
begin
require 'openssl'
@@ -44,7 +46,7 @@ begin
Gem.ssl_available = !!OpenSSL::Digest::SHA1
- class OpenSSL::X509::Certificate # :nodoc:
+ class OpenSSL::X509::Certificate
# Check the validity of this certificate.
def check_validity(issuer_cert = nil, time = Time.now)
ret = if @not_before && @not_before > time
@@ -66,8 +68,6 @@ rescue LoadError, StandardError
Gem.ssl_available = false
end
-# :stopdoc:
-
module Gem::SSL
# We make our own versions of the constants here. This allows us
@@ -88,5 +88,3 @@ module Gem::SSL
end
-# :startdoc:
-