summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-06 04:25:25 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-06 04:25:25 +0000
commitb24842185c7c45cee7835344c81d1d6da538ffeb (patch)
treebbd36296ca0de2309b69645ad472a6b1c78950d2
parent74c3aad4fc08a5be6974c8745c9a9b0f4b091479 (diff)
downloadruby-b24842185c7c45cee7835344c81d1d6da538ffeb.tar.gz
ruby-b24842185c7c45cee7835344c81d1d6da538ffeb.tar.xz
ruby-b24842185c7c45cee7835344c81d1d6da538ffeb.zip
* lib/rubygems/digest/digest_adapter.rb: removed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22789 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rwxr-xr-xlib/rubygems/digest/digest_adapter.rb39
-rwxr-xr-xlib/rubygems/digest/md5.rb10
-rwxr-xr-xlib/rubygems/digest/sha1.rb7
-rwxr-xr-xlib/rubygems/digest/sha2.rb7
4 files changed, 3 insertions, 60 deletions
diff --git a/lib/rubygems/digest/digest_adapter.rb b/lib/rubygems/digest/digest_adapter.rb
deleted file mode 100755
index a62c5300c..000000000
--- a/lib/rubygems/digest/digest_adapter.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-#--
-# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
-# All rights reserved.
-# See LICENSE.txt for permissions.
-#++
-
-module Gem
-
- # There is an incompatibility between the way Ruby 1.8.5 and 1.8.6
- # handles digests. This DigestAdapter will take a pre-1.8.6 digest
- # and adapt it to the 1.8.6 API.
- #
- # Note that only the digest and hexdigest methods are adapted,
- # since these are the only functions used by Gems.
- #
- class DigestAdapter
-
- # Initialize a digest adapter.
- def initialize(digest_class)
- @digest_class = digest_class
- end
-
- # Return a new digester. Since we are only implementing the stateless
- # methods, we will return ourself as the instance.
- def new
- self
- end
-
- # Return the digest of +string+ as a hex string.
- def hexdigest(string)
- @digest_class.new(string).hexdigest
- end
-
- # Return the digest of +string+ as a binary string.
- def digest(string)
- @digest_class.new(string).digest
- end
- end
-end
diff --git a/lib/rubygems/digest/md5.rb b/lib/rubygems/digest/md5.rb
index 477301a78..2bc8f9c13 100755
--- a/lib/rubygems/digest/md5.rb
+++ b/lib/rubygems/digest/md5.rb
@@ -8,14 +8,6 @@ require 'digest/md5'
# :stopdoc:
module Gem
- if RUBY_VERSION >= '1.8.6'
- MD5 = Digest::MD5
- else
- require 'rubygems/digest/digest_adapter'
- MD5 = DigestAdapter.new(Digest::MD5)
- def MD5.md5(string)
- self.hexdigest(string)
- end
- end
+ MD5 = Digest::MD5
end
# :startdoc:
diff --git a/lib/rubygems/digest/sha1.rb b/lib/rubygems/digest/sha1.rb
index 7ae69eb89..2d91c0f45 100755
--- a/lib/rubygems/digest/sha1.rb
+++ b/lib/rubygems/digest/sha1.rb
@@ -7,10 +7,5 @@
require 'digest/sha1'
module Gem
- if RUBY_VERSION >= '1.8.6'
- SHA1 = Digest::SHA1
- else
- require 'rubygems/digest/digest_adapter'
- SHA1 = DigestAdapter.new(Digest::SHA1)
- end
+ SHA1 = Digest::SHA1
end
diff --git a/lib/rubygems/digest/sha2.rb b/lib/rubygems/digest/sha2.rb
index 3bb107773..91cb23616 100755
--- a/lib/rubygems/digest/sha2.rb
+++ b/lib/rubygems/digest/sha2.rb
@@ -7,10 +7,5 @@
require 'digest/sha2'
module Gem
- if RUBY_VERSION >= '1.8.6'
- SHA256 = Digest::SHA256
- else
- require 'rubygems/digest/digest_adapter'
- SHA256 = DigestAdapter.new(Digest::SHA256)
- end
+ SHA256 = Digest::SHA256
end