Sha256: 6787f4f7117fc6198c8ce6cf7ff672c23e99c35c1cf1e9929b1750759fc5b68d

Contents?: true

Size: 777 Bytes

Versions: 16

Compression:

Stored size: 777 Bytes

Contents

# 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

Version data entries

16 entries across 16 versions & 9 rubygems

Version Path
fluent-plugin-nuopenlineage-light-0.1.0 vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/invokemethod.rb
fluent-plugin-openlineage-light-0.1.4 vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/invokemethod.rb
fluent-plugin-openlineage-light-0.1.3 vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/invokemethod.rb
fluent-plugin-openlineage-0.1.0 vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/invokemethod.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/drb-2.2.1/lib/drb/invokemethod.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/invokemethod.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/drb-2.2.1/lib/drb/invokemethod.rb
drb-2.2.1 lib/drb/invokemethod.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/drb-2.2.0/lib/drb/invokemethod.rb
drb-2.0.6 lib/drb/invokemethod.rb
drb-2.2.0 lib/drb/invokemethod.rb
drb-2.1.1 lib/drb/invokemethod.rb
drb-2.1.0 lib/drb/invokemethod.rb
drb-2.0.5 lib/drb/invokemethod.rb
drb-2.0.4 lib/drb/invokemethod.rb
ruby-compiler-0.1.1 vendor/ruby/lib/drb/invokemethod.rb