tantiny-in-memory 1.0.6 → 1.0.7
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/CHANGELOG.md +7 -0
- data/Cargo.toml +1 -1
- data/README.md +4 -4
- data/lib/tantiny/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: acb98be2f1ef173c3ad7ce7efb93c9846c35c28f7f16f291923356a785996e60
|
4
|
+
data.tar.gz: c4c40b964ce4ac108bc608419eee38397be1cd3ae4b40c259b8c6b18eabfa7f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f85d2c7a1d13f98a044fbb7ef9196e387cbc91268fb03271b84db9655441e31c116873e943896e977de09b44a25e77b1be14c2b7ba492c8046ba1162993b1ce7
|
7
|
+
data.tar.gz: f98c87aaf9a3bf1ba9f3e45496397da8dff68962eebcb6ed5f30ffab8c9dc8d030ecfbe7b31397e972fb58aacb24b56752e0bdc365e258b1b08203e12f990bdd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.0.7](https://github.com/a-chris/tantiny-in-memory/compare/v1.0.6...v1.0.7) (2023-09-04)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* update readme ([25dd0eb](https://github.com/a-chris/tantiny-in-memory/commit/25dd0eba68c0befc0dcfe0df95d507f429e78f6f))
|
9
|
+
|
3
10
|
## [1.0.6](https://github.com/a-chris/tantiny-in-memory/compare/v1.0.5...v1.0.6) (2023-09-04)
|
4
11
|
|
5
12
|
|
data/Cargo.toml
CHANGED
data/README.md
CHANGED
@@ -14,7 +14,7 @@ Tantiny is not exactly Ruby bindings to Tantivy, but it tries to be close. The m
|
|
14
14
|
Take a look at the most basic example:
|
15
15
|
|
16
16
|
```ruby
|
17
|
-
index = Tantiny::Index.new(
|
17
|
+
index = Tantiny::Index.new(nil) { text :description }
|
18
18
|
|
19
19
|
index << { id: 1, description: "Hello World!" }
|
20
20
|
index << { id: 2, description: "What's up?" }
|
@@ -30,7 +30,7 @@ index.search("world") # 1, 3
|
|
30
30
|
Add this line to your application's Gemfile:
|
31
31
|
|
32
32
|
```ruby
|
33
|
-
gem "tantiny"
|
33
|
+
gem "tantiny-in-memory"
|
34
34
|
```
|
35
35
|
|
36
36
|
And then execute:
|
@@ -39,7 +39,7 @@ And then execute:
|
|
39
39
|
|
40
40
|
Or install it yourself as:
|
41
41
|
|
42
|
-
$ gem install tantiny
|
42
|
+
$ gem install tantiny-in-memory
|
43
43
|
|
44
44
|
You don't **have to** have Rust installed on your system since Tantiny will try to download the pre-compiled binaries hosted on GitHub releases during the installation. However, if no pre-compiled binaries were found for your system (which is a combination of platform, architecture, and Ruby version) you will need to [install Rust](https://www.rust-lang.org/tools/install) first.
|
45
45
|
|
@@ -52,7 +52,7 @@ Please, make sure to specify the minor version when declaring dependency on `tan
|
|
52
52
|
You have to specify a path to where the index would be stored and a block that defines the schema:
|
53
53
|
|
54
54
|
```ruby
|
55
|
-
Tantiny::Index.new
|
55
|
+
Tantiny::Index.new(nil) do
|
56
56
|
id :imdb_id
|
57
57
|
facet :category
|
58
58
|
string :title
|
data/lib/tantiny/version.rb
CHANGED