Method: Bundler::ConnectionPool::Wrapper#respond_to?

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

#respond_to?(id, *args) ⇒ Boolean

Returns:

  • (Boolean)

29
30
31
# File 'lib/bundler/vendor/connection_pool/lib/connection_pool/wrapper.rb', line 29

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