Sha256: 027bd052042a0646c77116088b6110a7c1a44ab00315ea9060b72d0ca19120f6
Contents?: true
Size: 525 Bytes
Versions: 87
Compression:
Stored size: 525 Bytes
Contents
module Elasticsearch module API module Common module Actions; end module Client # Base client wrapper # module Base attr_reader :client def initialize(client) @client = client end end # Delegates the `perform_request` method to the wrapped client # def perform_request(method, path, params={}, body=nil) client.perform_request method, path, params, body end end end end end
Version data entries
87 entries across 87 versions & 6 rubygems