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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d7093accadbcf024c32015cc56018e1223afe46dc9b48bbaa8cde1d51ca06adb
4
- data.tar.gz: ca1998f6556cfaacffde8ac61c4cf289103089678653d18c3b9dfd328099a2c4
3
+ metadata.gz: acb98be2f1ef173c3ad7ce7efb93c9846c35c28f7f16f291923356a785996e60
4
+ data.tar.gz: c4c40b964ce4ac108bc608419eee38397be1cd3ae4b40c259b8c6b18eabfa7f6
5
5
  SHA512:
6
- metadata.gz: f544440e33ffb089e3838b2dc65dc53fc88953502c9ab79efcf61af8252f1343610b311681f404cbc4105361ea598eeb86c1078ff88fdceafc6b32435bd2c2ff
7
- data.tar.gz: 94e201b144960f261d31fd8d7f69fcfc451a3e01eff10e113f9f5ede744492ba14d55e28f90ea9355885d836ca514a921da4af3314e557bf42545095b49316bc
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
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "tantiny"
3
- version = "1.0.6" # {x-release-please-version}
3
+ version = "1.0.7" # {x-release-please-version}
4
4
  edition = "2021"
5
5
  authors = ["Christian Toscano"]
6
6
  repository = "https://github.com/a-chris/tantiny-in-memory"
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("/path/to/index") { text :description }
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 "/tmp/index" do
55
+ Tantiny::Index.new(nil) do
56
56
  id :imdb_id
57
57
  facet :category
58
58
  string :title
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tantiny
4
- VERSION = "1.0.6" # {x-release-please-version}
4
+ VERSION = "1.0.7" # {x-release-please-version}
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tantiny-in-memory
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Toscano