module Elasticsearch::XPack::API

Public Class Methods

included(base) click to toggle source
# File lib/elasticsearch/xpack.rb, line 29
def self.included(base)
  Elasticsearch::XPack::API.constants.reject {|c| c == :Client }.each do |m|
    base.__send__ :include, Elasticsearch::XPack::API.const_get(m)
  end
end