elastic-app-search 7.2.0 → 7.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/elastic/app-search/exceptions.rb +1 -1
- data/lib/elastic/app-search/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 77ec30d6589d64d4748196987a812cf8e7fe51ddc740493a75386b7d05a5fa61
|
4
|
+
data.tar.gz: 0dfe079e1fe86aa2bb93bf9dda4db422a97bc14e6af9fb1bbedbf0cb68ea721e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e35fc7b442007cf84f1c530e01aecaaf49c3e0fb2f00f6069eecb714479877e1d88c79332491ce25746100aaafa5ee2d3c98bb30ab419652dc7fe5617ead17a
|
7
|
+
data.tar.gz: 5c92d32d80af5fa318b6fa82f87baf6ad39a019d53c5b913752d7851f2f41407c6a5bcc98c3292f39993f3eea4b31e3ff3def9941c959aa2ede7a1668b69e645
|
data/README.md
CHANGED
@@ -25,7 +25,7 @@ To install the gem, execute:
|
|
25
25
|
gem install elastic-app-search
|
26
26
|
```
|
27
27
|
|
28
|
-
Or place `gem 'elastic-app-search', '~> 7.
|
28
|
+
Or place `gem 'elastic-app-search', '~> 7.3.0'` in your `Gemfile` and run `bundle install`.
|
29
29
|
|
30
30
|
## Versioning
|
31
31
|
|
@@ -9,7 +9,7 @@ module Elastic
|
|
9
9
|
else
|
10
10
|
response['errors'] || [response]
|
11
11
|
end
|
12
|
-
message = (errors.
|
12
|
+
message = (errors.count == 1) ? "Error: #{errors.first}" : "Errors: #{errors.inspect}"
|
13
13
|
super(message)
|
14
14
|
end
|
15
15
|
end
|