algoliasearch 1.18.2 → 1.18.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog +3 -0
- data/README.md +2 -2
- data/lib/algolia/version.rb +1 -1
- data/lib/algoliasearch.rb +0 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c05a9f465745ea343968b905dbbf9d736f79335
|
4
|
+
data.tar.gz: f3b5c81a41ef0d023361fda30eb2c800dd545d9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebf7c8fc01acb2f662c7ecc0177af8e0dc54c005897330f4f4bb9131a3da454f918277a5579d8482e396d85a011f546f3b3a2637aee96875a8e69f9287b159dc
|
7
|
+
data.tar.gz: 6389ff0a02c2ee0b611c355c6161cdb41d2e9830ec92049357cb13147c7014ddbae9df53fb8b49e35cfab5dd4d130d07073cb94516549ffbf16da092f9ff0bee
|
data/ChangeLog
CHANGED
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
|
|
data/lib/algolia/version.rb
CHANGED
data/lib/algoliasearch.rb
CHANGED
@@ -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.
|
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
|
+
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.
|
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
|