Sha256: a0c742e85373d1fcb4e42755f540be9a85ae5715f4143b26f53f05a9b16226c3
Contents?: true
Size: 963 Bytes
Versions: 1
Compression:
Stored size: 963 Bytes
Contents
require "ruby2_keywords" require "forwardable" require "http" require "hashie" require "thread" require "oj" require "set" require "search_flip/version" require "search_flip/exceptions" require "search_flip/json" require "search_flip/http_client" require "search_flip/config" require "search_flip/connection" require "search_flip/bulk" require "search_flip/filterable" require "search_flip/post_filterable" require "search_flip/aggregatable" require "search_flip/aggregation" require "search_flip/criteria" require "search_flip/response" require "search_flip/result" require "search_flip/index" require "search_flip/model" module SearchFlip class NotSupportedError < StandardError; end class ConnectionError < StandardError; end class ResponseError < StandardError attr_reader :code, :body def initialize(code:, body:) @code = code @body = body end def to_s "#{self.class.name} (#{code}): #{body}" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
search_flip-2.3.2 | lib/search_flip.rb |