X7ROOT File Manager
Current Path:
/opt/alt/ruby40/share/gems/gems/drb-2.2.3/lib/drb
opt
/
alt
/
ruby40
/
share
/
gems
/
gems
/
drb-2.2.3
/
lib
/
drb
/
??
..
??
acl.rb
(4.61 KB)
??
drb.rb
(58.76 KB)
??
eq.rb
(275 B)
??
extserv.rb
(840 B)
??
extservm.rb
(1.8 KB)
??
gw.rb
(3 KB)
??
observer.rb
(671 B)
??
ssl.rb
(11.91 KB)
??
timeridconv.rb
(2.16 KB)
??
unix.rb
(2.78 KB)
??
version.rb
(35 B)
??
weakidconv.rb
(784 B)
Editing: weakidconv.rb
# frozen_string_literal: false require_relative 'drb' module DRb # DRb::WeakIdConv is deprecated since 2.2.1. You don't need to use # DRb::WeakIdConv instead of DRb::DRbIdConv. It's the same class. # # This file still exists for backward compatibility. # # To use WeakIdConv: # # DRb.start_service(nil, nil, {:idconv => DRb::WeakIdConv.new}) def self.const_missing(name) # :nodoc: case name when :WeakIdConv warn("DRb::WeakIdConv is deprecated. " + "You can use the DRb::DRbIdConv. " + "You don't need to use this.", uplevel: 1) const_set(:WeakIdConv, DRbIdConv) singleton_class.remove_method(:const_missing) DRbIdConv else super end end end # DRb.install_id_conv(WeakIdConv.new)
Upload File
Create Folder