algoliasearch 1.18.2 → 1.18.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b365bd500e876ecbb82b6f70fee2b1800b737426
4
- data.tar.gz: 3d9c4bfeac68f9427021d1bc9ffd45e4f7220b7b
3
+ metadata.gz: 4c05a9f465745ea343968b905dbbf9d736f79335
4
+ data.tar.gz: f3b5c81a41ef0d023361fda30eb2c800dd545d9b
5
5
  SHA512:
6
- metadata.gz: a9fd7ef2e4dfae69e7da6ac3dc68adf5592e1a442cd553b0d601122c2d6addee035cf0e91fe28bbcb1602c67a97d603ffa963a5b8292bfbc848667af5f64b18a
7
- data.tar.gz: 4bf285469a6f905998781ed4c890c303815bbea7eca4ee9c4bcca05b3ee643208e0eef9ed30ce0cecbbd1dd8af0f2d0eee808644c9302e84b6b572ea2109972b
6
+ metadata.gz: ebf7c8fc01acb2f662c7ecc0177af8e0dc54c005897330f4f4bb9131a3da454f918277a5579d8482e396d85a011f546f3b3a2637aee96875a8e69f9287b159dc
7
+ data.tar.gz: 6389ff0a02c2ee0b611c355c6161cdb41d2e9830ec92049357cb13147c7014ddbae9df53fb8b49e35cfab5dd4d130d07073cb94516549ffbf16da092f9ff0bee
data/ChangeLog CHANGED
@@ -1,5 +1,8 @@
1
1
  CHANGELOG
2
2
 
3
+ 2017-12-04 1.18.3
4
+ * Remove Bundler and RubyGems requirements (#253)
5
+
3
6
  2017-11-28 1.18.2
4
7
  * Add (undocumented) gzip option to disable gzip (#240)
5
8
 
data/README.md CHANGED
@@ -213,6 +213,7 @@ search.start();
213
213
  - [Search an index](https://algolia.com/doc/api-reference/api-methods/search/?language=ruby)
214
214
  - [Search for facet values](https://algolia.com/doc/api-reference/api-methods/search-for-facet-values/?language=ruby)
215
215
  - [Search multiple indexes](https://algolia.com/doc/api-reference/api-methods/multiple-queries/?language=ruby)
216
+ - [Browse an index](https://algolia.com/doc/api-reference/api-methods/browse/?language=ruby)
216
217
 
217
218
 
218
219
 
@@ -224,6 +225,7 @@ search.start();
224
225
  - [Delete objects](https://algolia.com/doc/api-reference/api-methods/delete-objects/?language=ruby)
225
226
  - [Delete by query](https://algolia.com/doc/api-reference/api-methods/delete-by-query/?language=ruby)
226
227
  - [Get objects](https://algolia.com/doc/api-reference/api-methods/get-objects/?language=ruby)
228
+ - [Custom batch](https://algolia.com/doc/api-reference/api-methods/batch/?language=ruby)
227
229
  - [Wait for operations](https://algolia.com/doc/api-reference/api-methods/wait-task/?language=ruby)
228
230
 
229
231
 
@@ -282,8 +284,6 @@ search.start();
282
284
 
283
285
  ### Advanced
284
286
 
285
- - [Custom batch](https://algolia.com/doc/api-reference/api-methods/batch/?language=ruby)
286
- - [Browse an index](https://algolia.com/doc/api-reference/api-methods/browse/?language=ruby)
287
287
  - [Get latest logs](https://algolia.com/doc/api-reference/api-methods/get-logs/?language=ruby)
288
288
 
289
289
 
@@ -1,3 +1,3 @@
1
1
  module Algolia
2
- VERSION = "1.18.2"
2
+ VERSION = "1.18.3"
3
3
  end
@@ -4,9 +4,6 @@
4
4
  ## A quick library for playing with algolia.com's REST API for object storage.
5
5
  ## Thanks to Sylvain Utard for the initial version of the library (sylvain.utard@gmail.com)
6
6
  ## ----------------------------------------------------------------------
7
- require "rubygems"
8
- require "bundler/setup"
9
-
10
7
  require 'json'
11
8
  if !defined?(RUBY_ENGINE) && defined?(RUBY_VERSION) && RUBY_VERSION == '1.8.7'
12
9
  # work-around a limitation from nahi/httpclient, using the undefined RUBY_ENGINE constant
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algoliasearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.2
4
+ version: 1.18.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Algolia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-28 00:00:00.000000000 Z
11
+ date: 2017-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient
@@ -131,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
131
131
  version: '0'
132
132
  requirements: []
133
133
  rubyforge_project:
134
- rubygems_version: 2.6.14
134
+ rubygems_version: 2.6.13
135
135
  signing_key:
136
136
  specification_version: 4
137
137
  summary: A simple Ruby client for the algolia.com REST API