swiftype 1.5.0 → 1.5.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 +6 -2
- data/lib/swiftype/version.rb +1 -1
- data/swiftype.gemspec +2 -1
- metadata +6 -6
- data/.travis.yml +0 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f4ca51dcd851193e97d9abf73ebd09d20ad524b79a6f6c4cf5b884c49b8f3e0f
|
|
4
|
+
data.tar.gz: 91501f35676faaf4a0887ab46a47b84bb26612df5ebb2c7110a9c4baad110df3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7ffad2b6605023933b5ed0ff7782dd48de4217272efa60f3a084a438dd21a164476f1b82d19b4c016a0474c2d17d1c98fa5e2bae3bad32eece5910c83d6eb6e
|
|
7
|
+
data.tar.gz: 404bdd89e0c4edef1e4110ac82de97b969367109ff14587f432fce76236722361613b578cab2153a9cebe93c7dea65c5902e6511c353968f094bc6e5ea45e372
|
data/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
<p align="center"><img src="https://github.com/swiftype/swiftype-rb/blob/master/logo-site-search.png?raw=true" alt="Elastic Site Search Logo"></p>
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> **⚠️ This repository is deprecated ⚠️**
|
|
4
|
+
>
|
|
5
|
+
> **Please visit [https://github.com/elastic/site-search-ruby](https://github.com/elastic/site-search-ruby) for the up to date version. Thank you! - Elastic**
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
4
8
|
<a href="https://github.com/swiftype/swiftype-rb/releases"><img src="https://img.shields.io/github/release/swiftype/swiftype-rb/all.svg?style=flat-square" alt="GitHub release" /></a></p>
|
|
5
9
|
|
|
6
10
|
> A first-party Ruby client for the [Elastic Site Search API](https://swiftype.com/documentation/site-search/overview).
|
|
@@ -47,7 +51,7 @@ To install the gem, execute:
|
|
|
47
51
|
|
|
48
52
|
gem install swiftype
|
|
49
53
|
|
|
50
|
-
Or place `gem 'swiftype', '~> 1.5.
|
|
54
|
+
Or place `gem 'swiftype', '~> 1.5.2` in your `Gemfile` and run `bundle install`.
|
|
51
55
|
|
|
52
56
|
> **Note:** This client has been developed for the [Swiftype Site Search](https://www.swiftype.com/site-search) API endpoints only.
|
|
53
57
|
|
data/lib/swiftype/version.rb
CHANGED
data/swiftype.gemspec
CHANGED
|
@@ -8,12 +8,13 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.email = ["team@swiftype.com"]
|
|
9
9
|
s.homepage = "https://swiftype.com"
|
|
10
10
|
s.summary = %q{Official gem for accessing the Swiftype Search API}
|
|
11
|
-
s.description = %q{API client for accessing the Swiftype Search API
|
|
11
|
+
s.description = %q{Deprecated API client for accessing the Swiftype Site Search API. See new elastic-site-search gem.}
|
|
12
12
|
|
|
13
13
|
s.files = `git ls-files`.split("\n")
|
|
14
14
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
15
15
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
16
16
|
s.require_paths = ["lib"]
|
|
17
|
+
s.post_install_message = "DEPRECATION WARNING: The swiftype gem has been deprecated and replaced by elastic-site-search"
|
|
17
18
|
|
|
18
19
|
s.add_development_dependency 'rspec', '~> 3.0.0'
|
|
19
20
|
s.add_development_dependency 'awesome_print'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: swiftype
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Quin Hoxie
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-09-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|
|
@@ -67,8 +67,8 @@ dependencies:
|
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
69
|
version: '0'
|
|
70
|
-
description: API client for accessing the Swiftype Search API
|
|
71
|
-
|
|
70
|
+
description: Deprecated API client for accessing the Swiftype Site Search API. See
|
|
71
|
+
new elastic-site-search gem.
|
|
72
72
|
email:
|
|
73
73
|
- team@swiftype.com
|
|
74
74
|
executables: []
|
|
@@ -76,7 +76,6 @@ extensions: []
|
|
|
76
76
|
extra_rdoc_files: []
|
|
77
77
|
files:
|
|
78
78
|
- ".gitignore"
|
|
79
|
-
- ".travis.yml"
|
|
80
79
|
- Gemfile
|
|
81
80
|
- LICENSE
|
|
82
81
|
- README.md
|
|
@@ -176,7 +175,8 @@ files:
|
|
|
176
175
|
homepage: https://swiftype.com
|
|
177
176
|
licenses: []
|
|
178
177
|
metadata: {}
|
|
179
|
-
post_install_message:
|
|
178
|
+
post_install_message: 'DEPRECATION WARNING: The swiftype gem has been deprecated and
|
|
179
|
+
replaced by elastic-site-search'
|
|
180
180
|
rdoc_options: []
|
|
181
181
|
require_paths:
|
|
182
182
|
- lib
|