Module: Tire

Extended by:
DSL
Defined in:
lib/tire/http/clients/faraday.rb,
lib/tire.rb,
lib/tire/dsl.rb,
lib/tire/alias.rb,
lib/tire/count.rb,
lib/tire/index.rb,
lib/tire/utils.rb,
lib/tire/logger.rb,
lib/tire/search.rb,
lib/tire/version.rb,
lib/tire/http/client.rb,
lib/tire/search/scan.rb,
lib/tire/search/sort.rb,
lib/tire/model/import.rb,
lib/tire/model/naming.rb,
lib/tire/model/search.rb,
lib/tire/multi_search.rb,
lib/tire/results/item.rb,
lib/tire/search/facet.rb,
lib/tire/search/query.rb,
lib/tire/configuration.rb,
lib/tire/http/response.rb,
lib/tire/search/filter.rb,
lib/tire/model/indexing.rb,
lib/tire/model/callbacks.rb,
lib/tire/model/percolate.rb,
lib/tire/search/highlight.rb,
lib/tire/http/clients/curb.rb,
lib/tire/model/persistence.rb,
lib/tire/results/collection.rb,
lib/tire/results/pagination.rb,
lib/tire/search/script_field.rb,
lib/tire/search/queries/match.rb,
lib/tire/model/persistence/finders.rb,
lib/tire/model/persistence/storage.rb,
lib/tire/model/persistence/attributes.rb

Overview

A Faraday-based HTTP client, which allows you to choose a HTTP client.

See https://github.com/technoweenie/faraday/tree/master/lib/faraday/adapter

NOTE: Tire will switch to Faraday for the HTTP abstraction layer. This client is a temporary solution.

Example:

require 'typhoeus'
require 'tire/http/clients/faraday'

Tire.configure do |config|

  # Unless specified, tire will use Faraday.default_adapter and no middleware
  Tire::HTTP::Client::Faraday.faraday_middleware = Proc.new do |builder|
    builder.adapter :typhoeus
  end

  config.client(Tire::HTTP::Client::Faraday)

end

Defined Under Namespace

Modules: DSL, HTTP, Model, Results, Search, Utils Classes: Alias, Configuration, Index, Logger

Constant Summary collapse

VERSION =
"0.5.4"
CHANGELOG =
<<-END
  IMPORTANT CHANGES LATELY:

  * Added the support for the Count API
  * Escape single quotes in `to_curl` serialization
  * Added JRuby compatibility
  * Added proper `as_json` support for `Results::Collection` and `Results::Item` classes
  * Added extracting the `routing` information in the `Index#store` method
  * Refactored the `update_index` method for search and persistence integration
  * Cast collection properties in Model::Persistence as empty Array by default
  * Allow passing `:index` option to `MyModel.import`
  * Update to Mocha ~> 0.13
  * Update to MultiJson ~> 1.3
END

Class Method Summary collapse

Methods included from DSL

aliases, configure, count, index, multi_search, scan, search

Class Method Details

.warn(message) ⇒ Object



54
55
56
57
# File 'lib/tire.rb', line 54

def warn(message)
  line = caller.detect { |line| line !~ %r|lib\/tire\/| }.sub(/:in .*/, '')
  STDERR.puts  "", "\e[31m[DEPRECATION WARNING] #{message}", "(Called from #{line})", "\e[0m"
end