Module: Swiftype

Extended by:
Configuration
Defined in:
lib/swiftype.rb,
lib/swiftype/sso.rb,
lib/swiftype/client.rb,
lib/swiftype/request.rb,
lib/swiftype/version.rb,
lib/swiftype/exceptions.rb,
lib/swiftype/result_set.rb,
lib/swiftype/configuration.rb

Defined Under Namespace

Modules: Configuration, Request, SSO Classes: BadRequest, Client, ClientException, Forbidden, InvalidCredentials, NonExistentRecord, RecordAlreadyExists, ResultSet, UnexpectedHTTPException

Constant Summary collapse

VERSION =
"1.2.2"

Constants included from Configuration

Configuration::DEFAULT_ENDPOINT, Configuration::DEFAULT_USER_AGENT, Configuration::VALID_OPTIONS_KEYS

Class Method Summary collapse

Methods included from Configuration

authenticated_url=, configure, endpoint=, extended, options, reset

Class Method Details

.const_missing(const_name) ⇒ Object



7
8
9
10
11
# File 'lib/swiftype.rb', line 7

def self.const_missing(const_name)
  super unless const_name == :Easy
  warn "`Swiftype::Easy` has been deprecated. Use `Swiftype::Client` instead."
  Client
end