algoliasearch 1.18.4 → 1.18.5

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: 5e182a30fe9cddff16551b31a185b806c201e51a
4
- data.tar.gz: fba310d823c7f88314e125d1802410a62191e977
3
+ metadata.gz: 03233bbddd9db9af56283870fb84965758c916f4
4
+ data.tar.gz: d9e3db3fe636e377dae693add2f19f6a80fe4524
5
5
  SHA512:
6
- metadata.gz: 0eacb57919893d7ee4c35faa36a7b29733b6b9997c2ae048f31909668ddd93b9ed232623fda140a6144d36ca09f5057ff1e8f50d1de65e0d3a0e33c4d0632bc9
7
- data.tar.gz: 45841405d622f056d0d50f349ebdc1251624924a8a9afc0af97b1bbd55d90afb61f293734cb788948629d2dc54d88426eab23057b7025d9eb2d4e55ced57269a
6
+ metadata.gz: 45283b077a95d7fc21890e98e194e6234e2cbcbd0da0f79f7b5f4d54c63d1a6429b408cba8170719f4380d2b2be3ecc9e7a6ff0ede6be590a04fe82d7db200af
7
+ data.tar.gz: 0b9e1912eb4f1a44a8c9212b9c5e4a196564202ad1797f2d9ed17117603c72bbf372ce6b61c7b3132bf50ae34732aa6e0e6d2812e326c1946f0f9388319f367e
data/ChangeLog CHANGED
@@ -1,5 +1,8 @@
1
1
  CHANGELOG
2
2
 
3
+ 2017-12-07 1.18.5
4
+ * Fix missing requirement
5
+
3
6
  2017-12-06 1.18.4
4
7
  * Remove remaining unnecessary requirements (#256)
5
8
  * Remove Gemfile.lock (#257)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- algoliasearch (1.18.4)
4
+ algoliasearch (1.18.5)
5
5
  hashdiff (= 0.3.5)
6
6
  httpclient (~> 2.8.3)
7
7
  json (>= 1.5.1)
@@ -1,3 +1,3 @@
1
1
  module Algolia
2
- VERSION = "1.18.4"
2
+ VERSION = "1.18.5"
3
3
  end
@@ -2,7 +2,7 @@
2
2
  ##
3
3
  ## Ruby client for algolia.com
4
4
  ## A quick library for playing with algolia.com's REST API for object storage.
5
- ## Thanks to Sylvain Utard for the initial version of the library (sylvain.utard@gmail.com)
5
+ ## Thanks to Sylvain Utard for the initial version of the library
6
6
  ## ----------------------------------------------------------------------
7
7
  require 'json'
8
8
  if !defined?(RUBY_ENGINE) && defined?(RUBY_VERSION) && RUBY_VERSION == '1.8.7'
@@ -15,6 +15,7 @@ else
15
15
  end
16
16
  require 'date'
17
17
  require 'cgi'
18
+ require 'pathname'
18
19
 
19
20
  cwd = Pathname(__FILE__).dirname
20
21
  $:.unshift(cwd.to_s) unless $:.include?(cwd.to_s) || $:.include?(cwd.expand_path.to_s)
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
4
+ version: 1.18.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Algolia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-06 00:00:00.000000000 Z
11
+ date: 2017-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient