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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 89a3ded7c81fa35f89b068b462b18afd39598b96028014f9a3f67d116185fb01
4
- data.tar.gz: ed95009629d9b59d69681eb88bcc97829644613a22b307a49a7a79c24906bc25
3
+ metadata.gz: 0abd9bac04c1729453bda69e45522c851529806ca35212c0ead4493ea55be0d4
4
+ data.tar.gz: c58c656fefd8c4a6288c17e5d44f63fe47519096bb8fd98444eae286e74fdba5
5
5
  SHA512:
6
- metadata.gz: f7e23120e2e4c6185a769a505a53aaa9640be158dbf2bfd01d957f6acf4fc167c471e1403d8e45c396933bb4e66af892a200ddc91b2f233db77a670c6fffaafd
7
- data.tar.gz: 174322921e02fcdba0b86075ebd931a4a10273d51ce26593cf1bdecccf1603a01b295fd11652d1e06db45abbe200512bd614bbc6279768d5b4570309c95b40e8
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.1'` in your `Gemfile` and run `bundle install`.
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/app-search'
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/app-search'
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'
@@ -1,5 +1,5 @@
1
1
  module Elastic
2
2
  module AppSearch
3
- VERSION = '7.3.1'
3
+ VERSION = '7.3.2'
4
4
  end
5
5
  end
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.1
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-04 00:00:00.000000000 Z
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