elastic-app-search 7.3.1 → 7.3.2
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/README.md +3 -3
- data/lib/elastic-app-search.rb +1 -0
- data/lib/elastic/app-search/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0abd9bac04c1729453bda69e45522c851529806ca35212c0ead4493ea55be0d4
|
|
4
|
+
data.tar.gz: c58c656fefd8c4a6288c17e5d44f63fe47519096bb8fd98444eae286e74fdba5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28b860a542f51ff4d98b1d648962a8d4578f0f3b5ac75da52d17fba2e886c3c603221e2ff7d845cd924a570bc48958e6b6597618a4103f7ba33829be923e5b21
|
|
7
|
+
data.tar.gz: 8195afd73f4cc606ce7e851f803a33dc342317f9fd151d477597f0f22fea867b19de8549323b9fbb62110d86b97c8e202a26a81bec9643cb3a661752e3cc8132
|
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.3.
|
|
28
|
+
Or place `gem 'elastic-app-search', '~> 7.3.2'` in your `Gemfile` and run `bundle install`.
|
|
29
29
|
|
|
30
30
|
## Versioning
|
|
31
31
|
|
|
@@ -48,7 +48,7 @@ It also requires a valid `[API_KEY]`, which authenticates requests to the API. Y
|
|
|
48
48
|
You can find your `[API_KEY]` and your `[HOST_IDENTIFIER]` within the [Credentials](https://app.swiftype.com/as/credentials) menu:
|
|
49
49
|
|
|
50
50
|
```ruby
|
|
51
|
-
require 'elastic
|
|
51
|
+
require 'elastic-app-search'
|
|
52
52
|
|
|
53
53
|
client = Elastic::AppSearch::Client.new(:host_identifier => 'host-c5s2mj', :api_key => 'private-mu75psc5egt9ppzuycnc2mc3')
|
|
54
54
|
```
|
|
@@ -60,7 +60,7 @@ The client can be configured to use a managed deploy by using the
|
|
|
60
60
|
, it can be omitted.
|
|
61
61
|
|
|
62
62
|
```ruby
|
|
63
|
-
require 'elastic
|
|
63
|
+
require 'elastic-app-search'
|
|
64
64
|
|
|
65
65
|
client = Elastic::AppSearch::Client.new(:api_key => 'private-mu75psc5egt9ppzuycnc2mc3', :api_endpoint => 'http://localhost:3002/api/as/v1/')
|
|
66
66
|
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'elastic/app-search'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elastic-app-search
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.3.
|
|
4
|
+
version: 7.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Quin Hoxie
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-09-
|
|
11
|
+
date: 2019-09-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: awesome_print
|
|
@@ -104,6 +104,7 @@ files:
|
|
|
104
104
|
- Rakefile
|
|
105
105
|
- elastic-app-search.gemspec
|
|
106
106
|
- lib/data/ca-bundle.crt
|
|
107
|
+
- lib/elastic-app-search.rb
|
|
107
108
|
- lib/elastic/app-search.rb
|
|
108
109
|
- lib/elastic/app-search/client.rb
|
|
109
110
|
- lib/elastic/app-search/client/documents.rb
|