module Elasticsearch::API

Constants

COMMON_PARAMS
COMMON_QUERY_PARAMS
HTTP_DELETE
HTTP_GET
HTTP_HEAD
HTTP_POST
HTTP_PUT
UNDERSCORE_ALL
VERSION

Public Class Methods

included(base) click to toggle source

Auto-include all namespaces in the receiver

# File lib/elasticsearch/api.rb, line 38
def self.included(base)
  base.send :include,
            Elasticsearch::API::Common,
            Elasticsearch::API::Actions,
            Elasticsearch::API::Cluster,
            Elasticsearch::API::Nodes,
            Elasticsearch::API::Indices,
            Elasticsearch::API::Snapshot,
            Elasticsearch::API::Cat
end