Method: Bundler::ConnectionPool::Wrapper#method_missing

Defined in:
lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb,
lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb

#method_missing(name, *args, &block) ⇒ Object


35
36
37
38
39
# File 'lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb', line 35

def method_missing(name, *args, **kwargs, &block)
  with do |connection|
    connection.send(name, *args, **kwargs, &block)
  end
end