rsolr 2.2.1 → 2.3.0
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 +4 -4
- data/.travis.yml +5 -5
- data/lib/rsolr/client.rb +1 -1
- data/lib/rsolr/version.rb +1 -1
- data/rsolr.gemspec +0 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ca1fd66200c07e8e4ffc42bc8d71e6735a7294b7c53485ed8b49f8cfc99ac68
|
|
4
|
+
data.tar.gz: 3a0b50c5807543beed8ddc533cb8d446909176d61d1022ef0d8bb26ee1250648
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a4bf74cc57d3523c4774f86c895b2e4a6bed229cc67499278fad4cf320575c68df1774d1fb0615108ca5ced0267798cea42a3e4c96723d6f2fb0f4294f38bcb
|
|
7
|
+
data.tar.gz: a51ec9142aba1761511058ed8614f600325e32551e6ae23b1638e2654b67e8a5ef3b8db1f6653171b67c492264079f368f95a0856ce1d7db5d1e5a06998b32d8
|
data/.travis.yml
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
sudo: false
|
|
3
3
|
rvm:
|
|
4
|
-
- 2.
|
|
5
|
-
- 2.
|
|
6
|
-
- 2.
|
|
7
|
-
- jruby
|
|
4
|
+
- 2.6
|
|
5
|
+
- 2.5
|
|
6
|
+
- 2.4
|
|
7
|
+
- jruby
|
|
8
8
|
|
|
9
9
|
env:
|
|
10
10
|
global:
|
|
11
11
|
- JRUBY_OPTS="-J-Xms512m -J-Xmx1024m"
|
|
12
12
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
|
13
13
|
|
|
14
|
-
jdk:
|
|
14
|
+
jdk: openjdk8
|
data/lib/rsolr/client.rb
CHANGED
|
@@ -200,7 +200,7 @@ class RSolr::Client
|
|
|
200
200
|
end
|
|
201
201
|
|
|
202
202
|
{ status: response.status.to_i, headers: response.headers, body: response.body.force_encoding('utf-8') }
|
|
203
|
-
rescue Errno::ECONNREFUSED, Faraday::Error::ConnectionFailed
|
|
203
|
+
rescue Errno::ECONNREFUSED, defined?(Faraday::ConnectionFailed) ? Faraday::ConnectionFailed : Faraday::Error::ConnectionFailed
|
|
204
204
|
raise RSolr::Error::ConnectionRefused, request_context.inspect
|
|
205
205
|
rescue Faraday::Error => e
|
|
206
206
|
raise RSolr::Error::Http.new(request_context, e.response)
|
data/lib/rsolr/version.rb
CHANGED
data/rsolr.gemspec
CHANGED
|
@@ -23,7 +23,6 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
s.email = ["goodieboy@gmail.com"]
|
|
24
24
|
s.license = 'Apache-2.0'
|
|
25
25
|
s.homepage = "https://github.com/rsolr/rsolr"
|
|
26
|
-
s.rubyforge_project = "rsolr"
|
|
27
26
|
s.files = `git ls-files`.split("\n")
|
|
28
27
|
s.test_files = `git ls-files -- {spec}/*`.split("\n")
|
|
29
28
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rsolr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Antoine Latter
|
|
@@ -29,7 +29,7 @@ authors:
|
|
|
29
29
|
autorequire:
|
|
30
30
|
bindir: bin
|
|
31
31
|
cert_chain: []
|
|
32
|
-
date:
|
|
32
|
+
date: 2020-01-13 00:00:00.000000000 Z
|
|
33
33
|
dependencies:
|
|
34
34
|
- !ruby/object:Gem::Dependency
|
|
35
35
|
name: builder
|
|
@@ -224,8 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
224
224
|
version: '0'
|
|
225
225
|
requirements:
|
|
226
226
|
- Apache Solr
|
|
227
|
-
|
|
228
|
-
rubygems_version: 2.7.6
|
|
227
|
+
rubygems_version: 3.0.3
|
|
229
228
|
signing_key:
|
|
230
229
|
specification_version: 4
|
|
231
230
|
summary: A Ruby client for Apache Solr
|