Sha256: 8106895b5db88499398d45a0541e5669104417fcb35e6cff867652989298fc16
Contents?: true
Size: 443 Bytes
Versions: 19
Compression:
Stored size: 443 Bytes
Contents
module Elastic::Shims class Base include Elastic::Support::Traversable attr_reader :child def initialize(_child) @child = _child end def traverse(&_block) @child.traverse(&_block) end def render(_options = {}) @child.render(_options) end def handle_result(_raw, _formatter) @child.handle_result(_raw, _formatter) end end end require "elastic/shims/concerns/hit_picker"
Version data entries
19 entries across 19 versions & 1 rubygems