mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/digest/lib/digest.rb (Digest::self.const_missing): Drop
autoloads for sha2 classes in favor of handling in const_missing(), to work around a problem exposed on OS X. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11736 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b9084ef408
commit
559be019de
2 changed files with 18 additions and 10 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Feb 14 21:39:36 2007 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* ext/digest/lib/digest.rb (Digest::self.const_missing): Drop
|
||||
autoloads for sha2 classes in favor of handling in
|
||||
const_missing(), to work around a problem exposed on OS X.
|
||||
|
||||
Wed Feb 14 21:19:47 2007 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* thread_pthread.ci (native_thread_create): adjust 4KB (page size)
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
require 'digest.so'
|
||||
|
||||
module Digest
|
||||
autoload "SHA256", "digest/sha2.so"
|
||||
autoload "SHA384", "digest/sha2.so"
|
||||
autoload "SHA512", "digest/sha2.so"
|
||||
|
||||
def self.const_missing(name)
|
||||
begin
|
||||
require File.join('digest', name.downcase)
|
||||
|
||||
return Digest.const_get(name) if Digest.const_defined?(name)
|
||||
rescue LoadError => e
|
||||
case name
|
||||
when :SHA256, :SHA384, :SHA512
|
||||
lib = 'digest/sha2.so'
|
||||
else
|
||||
lib = File.join('digest', name.to_s.downcase)
|
||||
end
|
||||
|
||||
raise NameError, "Digest class not found: Digest::#{name}"
|
||||
begin
|
||||
require lib
|
||||
rescue LoadError => e
|
||||
raise LoadError, "library not found for class Digest::#{name} -- #{lib}"
|
||||
end
|
||||
|
||||
Digest.const_get(name)
|
||||
end
|
||||
|
||||
class ::Digest::Class
|
||||
|
|
Loading…
Reference in a new issue