algoliasearch 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3e76972bfa991277d06f88eb6a26127541bf6f39
4
- data.tar.gz: 77fcd139aea3c16ea07954bc8f2c2aa5170d5188
3
+ metadata.gz: 902ff4f5d458099568e67450745da03c7dc088fd
4
+ data.tar.gz: 9c7dda1a55f4dd94598f25257e818544754ab11a
5
5
  SHA512:
6
- metadata.gz: 7ccb1980654aec274dec37804170e22b930234df9d9c09e1acf7a690ba78d5311e730516f7ce012b7114f199a5c02399740071cc8ca6c47da916bf960752c322
7
- data.tar.gz: b03060f3cefaa2407ed0307350bd32ff597d2e6c356b3704dd9ba9bdb86c5b70aaffd523e69e923d961985b1990f23e406ef2d80968223738dc75600d8d07298
6
+ metadata.gz: d1d11a26f1628910d80576a0a0d80b76aede1d725c8be68480080a602068aad3954a289d46deb24b00970171120364a78d45eaf5baf809f1d2ceea8e15aead8a
7
+ data.tar.gz: cd3bac467622ee175c93a70a00ff6cdadbbe631b90170ae4215e0154d157846f43443b0fe0419569496d21e84bacc2a150d2bd17b0a1a51e0182f3d906981c00
@@ -0,0 +1,22 @@
1
+ CHANGELOG
2
+
3
+ 2013-10-17 1.1.4
4
+
5
+ * Fixed wait_task not sleeping at all
6
+
7
+ 2013-10-15 1.1.3
8
+
9
+ * Fixed thread-safety issues. - Curl sessions are now thread-local
10
+
11
+ 2013-10-02 1.1.2
12
+
13
+ * Fixed instance/class method conflict
14
+
15
+ 2013-10-01 1.1.1
16
+
17
+ * Updated documentation
18
+ * Plug copy/move index
19
+
20
+ 2013-09-17 1.1.0
21
+
22
+ * Initial import
@@ -1,17 +1,17 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
- ZenTest (4.9.3)
4
+ ZenTest (4.9.4)
5
5
  addressable (2.3.5)
6
6
  autotest (4.4.6)
7
7
  ZenTest (>= 4.4.1)
8
8
  autotest-fsevent (0.2.8)
9
9
  sys-uname
10
10
  autotest-growl (0.2.16)
11
- backports (3.3.4)
11
+ backports (3.3.5)
12
12
  builder (3.2.2)
13
13
  coderay (1.0.9)
14
- curb (0.8.4)
14
+ curb (0.8.5)
15
15
  diff-lcs (1.2.4)
16
16
  ethon (0.6.1)
17
17
  ffi (>= 1.3.0)
@@ -39,7 +39,7 @@ GEM
39
39
  hashie (2.0.5)
40
40
  highline (1.6.19)
41
41
  httpauth (0.2.0)
42
- jeweler (1.8.7)
42
+ jeweler (1.8.8)
43
43
  builder
44
44
  bundler (~> 1.0)
45
45
  git (>= 1.2.5)
@@ -55,7 +55,7 @@ GEM
55
55
  addressable (~> 2.3)
56
56
  method_source (0.8.2)
57
57
  mime-types (1.25)
58
- multi_json (1.8.0)
58
+ multi_json (1.8.2)
59
59
  multi_xml (0.5.5)
60
60
  multipart-post (1.2.0)
61
61
  net-http-persistent (2.9)
@@ -94,7 +94,7 @@ GEM
94
94
  sys-uname (0.9.2)
95
95
  ffi (>= 1.0.0)
96
96
  terminal-notifier (1.5.1)
97
- travis (1.5.4)
97
+ travis (1.5.5)
98
98
  backports
99
99
  faraday (~> 0.8.7)
100
100
  faraday_middleware (~> 0.9)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.3
1
+ 1.1.4
@@ -5,20 +5,22 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "algoliasearch"
8
- s.version = "1.1.3"
8
+ s.version = "1.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Algolia"]
12
- s.date = "2013-10-15"
12
+ s.date = "2013-10-17"
13
13
  s.description = "A simple Ruby client for the algolia.com REST API"
14
14
  s.email = "contact@algolia.com"
15
15
  s.extra_rdoc_files = [
16
+ "ChangeLog",
16
17
  "LICENSE.txt",
17
18
  "README.md"
18
19
  ]
19
20
  s.files = [
20
21
  ".rspec",
21
22
  ".travis.yml",
23
+ "ChangeLog",
22
24
  "Gemfile",
23
25
  "Gemfile.lock",
24
26
  "LICENSE.txt",
@@ -142,7 +142,7 @@ module Algolia
142
142
  if status == "published"
143
143
  return
144
144
  end
145
- sleep(timeBeforeRetry / 1000)
145
+ sleep(timeBeforeRetry.to_f / 1000)
146
146
  end
147
147
  end
148
148
 
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.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Algolia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-15 00:00:00.000000000 Z
11
+ date: 2013-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: curb
@@ -71,11 +71,13 @@ email: contact@algolia.com
71
71
  executables: []
72
72
  extensions: []
73
73
  extra_rdoc_files:
74
+ - ChangeLog
74
75
  - LICENSE.txt
75
76
  - README.md
76
77
  files:
77
78
  - .rspec
78
79
  - .travis.yml
80
+ - ChangeLog
79
81
  - Gemfile
80
82
  - Gemfile.lock
81
83
  - LICENSE.txt