Sha256: 06d38577e75378cf05159dda362a4e00ff96cf2f4bde8b19eb409498554e8de5

Contents?: true

Size: 1.3 KB

Versions: 170

Compression:

Stored size: 1.3 KB

Contents

class Bundler::ConnectionPool
  class Wrapper < ::BasicObject
    METHODS = [:with, :pool_shutdown, :wrapped_pool]

    def initialize(options = {}, &block)
      @pool = options.fetch(:pool) { ::Bundler::ConnectionPool.new(options, &block) }
    end

    def wrapped_pool
      @pool
    end

    def with(&block)
      @pool.with(&block)
    end

    def pool_shutdown(&block)
      @pool.shutdown(&block)
    end

    def pool_size
      @pool.size
    end

    def pool_available
      @pool.available
    end

    def respond_to?(id, *args)
      METHODS.include?(id) || with { |c| c.respond_to?(id, *args) }
    end

    # rubocop:disable Style/MissingRespondToMissing
    if ::RUBY_VERSION >= "3.0.0"
      def method_missing(name, *args, **kwargs, &block)
        with do |connection|
          connection.send(name, *args, **kwargs, &block)
        end
      end
    elsif ::RUBY_VERSION >= "2.7.0"
      ruby2_keywords def method_missing(name, *args, &block)
        with do |connection|
          connection.send(name, *args, &block)
        end
      end
    else
      def method_missing(name, *args, &block)
        with do |connection|
          connection.send(name, *args, &block)
        end
      end
    end
    # rubocop:enable Style/MethodMissingSuper
    # rubocop:enable Style/MissingRespondToMissing
  end
end

Version data entries

170 entries across 170 versions & 4 rubygems

Version Path
rubygems-update-3.5.5 bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
bundler-2.5.5 lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.10 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.9 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.8 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.7 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.6 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.5 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.4 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.3 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.2 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.1 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.2.0 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.1.99 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.1.98 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.1.97 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.1.96 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.1.95 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.1.94 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb
harbr-0.1.93 vendor/bundle/ruby/3.2.0/gems/bundler-2.4.21/lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb