X7ROOT File Manager
Current Path:
/opt/alt/ruby32/share/ruby
opt
/
alt
/
ruby32
/
share
/
ruby
/
ðŸ“
..
📄
English.rb
(6.11 KB)
📄
abbrev.rb
(3.45 KB)
📄
base64.rb
(3.35 KB)
ðŸ“
benchmark
📄
benchmark.rb
(18.4 KB)
ðŸ“
bigdecimal
📄
bigdecimal.rb
(24 B)
ðŸ“
cgi
📄
cgi.rb
(9.83 KB)
📄
coverage.rb
(368 B)
ðŸ“
csv
📄
csv.rb
(92.47 KB)
📄
date.rb
(1.17 KB)
📄
delegate.rb
(11.68 KB)
ðŸ“
did_you_mean
📄
did_you_mean.rb
(5.31 KB)
ðŸ“
digest
📄
digest.rb
(3.3 KB)
ðŸ“
drb
📄
drb.rb
(50 B)
ðŸ“
erb
📄
erb.rb
(14.57 KB)
ðŸ“
error_highlight
📄
error_highlight.rb
(84 B)
📄
expect.rb
(2.19 KB)
ðŸ“
fiddle
📄
fiddle.rb
(2.88 KB)
📄
fileutils.rb
(79.02 KB)
📄
find.rb
(2.5 KB)
ðŸ“
forwardable
📄
forwardable.rb
(9.03 KB)
📄
getoptlong.rb
(20.26 KB)
ðŸ“
io
📄
ipaddr.rb
(20.6 KB)
ðŸ“
json
📄
json.rb
(19.29 KB)
📄
kconv.rb
(5.72 KB)
ðŸ“
logger
📄
logger.rb
(21.95 KB)
📄
mkmf.rb
(88.4 KB)
📄
monitor.rb
(6.76 KB)
📄
mutex_m.rb
(2.33 KB)
ðŸ“
net
ðŸ“
objspace
📄
objspace.rb
(4.67 KB)
📄
observer.rb
(6.38 KB)
📄
open-uri.rb
(25.52 KB)
ðŸ“
open3
📄
open3.rb
(22.11 KB)
ðŸ“
openssl
📄
openssl.rb
(1.03 KB)
📄
optionparser.rb
(59 B)
ðŸ“
optparse
📄
optparse.rb
(61.06 KB)
📄
ostruct.rb
(13.88 KB)
📄
pathname.rb
(16.83 KB)
📄
pp.rb
(17.22 KB)
📄
prettyprint.rb
(15.9 KB)
📄
pstore.rb
(20.52 KB)
ðŸ“
psych
📄
psych.rb
(24.62 KB)
ðŸ“
racc
📄
racc.rb
(137 B)
ðŸ“
random
📄
readline.rb
(189 B)
ðŸ“
reline
📄
reline.rb
(17.75 KB)
📄
resolv-replace.rb
(1.76 KB)
📄
resolv.rb
(74.19 KB)
ðŸ“
rinda
ðŸ“
ripper
📄
ripper.rb
(2.44 KB)
ðŸ“
ruby_vm
📄
securerandom.rb
(2.11 KB)
ðŸ“
set
📄
set.rb
(25.31 KB)
📄
shellwords.rb
(7.09 KB)
📄
singleton.rb
(4.08 KB)
📄
socket.rb
(43.72 KB)
ðŸ“
syntax_suggest
📄
syntax_suggest.rb
(74 B)
ðŸ“
syslog
📄
tempfile.rb
(13.84 KB)
📄
time.rb
(23.72 KB)
📄
timeout.rb
(5.83 KB)
📄
tmpdir.rb
(4.7 KB)
📄
tsort.rb
(14.26 KB)
📄
un.rb
(11.17 KB)
ðŸ“
unicode_normalize
ðŸ“
uri
📄
uri.rb
(3.06 KB)
ðŸ“
vendor_ruby
📄
weakref.rb
(1.36 KB)
ðŸ“
yaml
📄
yaml.rb
(2.11 KB)
Editing: digest.rb
# frozen_string_literal: false if defined?(Digest) && /\A(?:2\.|3\.0\.[0-2]\z)/.match?(RUBY_VERSION) && caller_locations.any? { |l| %r{/(rubygems/gem_runner|bundler/cli)\.rb}.match?(l.path) } # Before Ruby 3.0.3/3.1.0, the gem and bundle commands used to load # the digest library before loading additionally installed gems, so # you will get constant redefinition warnings and unexpected # implementation overwriting if we proceed here. Avoid that. return end require 'digest/version' require 'digest/loader' module Digest # A mutex for Digest(). REQUIRE_MUTEX = Thread::Mutex.new def self.const_missing(name) # :nodoc: case name when :SHA256, :SHA384, :SHA512 lib = 'digest/sha2' else lib = File.join('digest', name.to_s.downcase) end begin require lib rescue LoadError raise LoadError, "library not found for class Digest::#{name} -- #{lib}", caller(1) end unless Digest.const_defined?(name) raise NameError, "uninitialized constant Digest::#{name}", caller(1) end Digest.const_get(name) end class ::Digest::Class # Creates a digest object and reads a given file, _name_. # Optional arguments are passed to the constructor of the digest # class. # # p Digest::SHA256.file("X11R6.8.2-src.tar.bz2").hexdigest # # => "f02e3c85572dc9ad7cb77c2a638e3be24cc1b5bea9fdbb0b0299c9668475c534" def self.file(name, *args) new(*args).file(name) end # Returns the base64 encoded hash value of a given _string_. The # return value is properly padded with '=' and contains no line # feeds. def self.base64digest(str, *args) [digest(str, *args)].pack('m0') end end module Instance # Updates the digest with the contents of a given file _name_ and # returns self. def file(name) File.open(name, "rb") {|f| buf = "" while f.read(16384, buf) update buf end } self end # If none is given, returns the resulting hash value of the digest # in a base64 encoded form, keeping the digest's state. # # If a +string+ is given, returns the hash value for the given # +string+ in a base64 encoded form, resetting the digest to the # initial state before and after the process. # # In either case, the return value is properly padded with '=' and # contains no line feeds. def base64digest(str = nil) [str ? digest(str) : digest].pack('m0') end # Returns the resulting hash value and resets the digest to the # initial state. def base64digest! [digest!].pack('m0') end end end # call-seq: # Digest(name) -> digest_subclass # # Returns a Digest subclass by +name+ in a thread-safe manner even # when on-demand loading is involved. # # require 'digest' # # Digest("MD5") # # => Digest::MD5 # # Digest(:SHA256) # # => Digest::SHA256 # # Digest(:Foo) # # => LoadError: library not found for class Digest::Foo -- digest/foo def Digest(name) const = name.to_sym Digest::REQUIRE_MUTEX.synchronize { # Ignore autoload's because it is void when we have #const_missing Digest.const_missing(const) } rescue LoadError # Constants do not necessarily rely on digest/*. if Digest.const_defined?(const) Digest.const_get(const) else raise end end
Upload File
Create Folder