X7ROOT File Manager
Current Path:
/opt/alt/ruby24/lib64/ruby/2.4.0/drb
opt
/
alt
/
ruby24
/
lib64
/
ruby
/
2.4.0
/
drb
/
ðŸ“
..
📄
acl.rb
(4.36 KB)
📄
drb.rb
(56.5 KB)
📄
eq.rb
(275 B)
📄
extserv.rb
(831 B)
📄
extservm.rb
(1.77 KB)
📄
gw.rb
(3 KB)
📄
invokemethod.rb
(777 B)
📄
observer.rb
(667 B)
📄
ssl.rb
(11.58 KB)
📄
timeridconv.rb
(2.16 KB)
📄
unix.rb
(2.75 KB)
Editing: invokemethod.rb
# frozen_string_literal: false # for ruby-1.8.0 module DRb # :nodoc: all class DRbServer module InvokeMethod18Mixin def block_yield(x) if x.size == 1 && x[0].class == Array x[0] = DRbArray.new(x[0]) end @block.call(*x) end def perform_with_block @obj.__send__(@msg_id, *@argv) do |*x| jump_error = nil begin block_value = block_yield(x) rescue LocalJumpError jump_error = $! end if jump_error case jump_error.reason when :break break(jump_error.exit_value) else raise jump_error end end block_value end end end end end
Upload File
Create Folder