summaryrefslogtreecommitdiff
path: root/trunk/lib/rubygems/digest/md5.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/lib/rubygems/digest/md5.rb')
-rwxr-xr-xtrunk/lib/rubygems/digest/md5.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/trunk/lib/rubygems/digest/md5.rb b/trunk/lib/rubygems/digest/md5.rb
deleted file mode 100755
index f924579c08..0000000000
--- a/trunk/lib/rubygems/digest/md5.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/env ruby
-#--
-# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
-# All rights reserved.
-# See LICENSE.txt for permissions.
-#++
-
-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
-end
-# :startdoc:
-