respond_to_missing?

in elasticsearch-model/lib/elasticsearch/model/response/result.rb [59:64]


        def respond_to_missing?(method_name, include_private = false)
          @result.respond_to?(method_name.to_sym) || \
          @result._source && @result._source.respond_to?(method_name.to_sym) || \
          super
        end