tantiny-in-memory 1.0.0 → 1.0.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/CHANGELOG.md +15 -0
- data/Cargo.toml +1 -1
- data/lib/.rbnext/3.0/tantiny/schema.rb +53 -0
- data/lib/tantiny/version.rb +1 -1
- data/lib/tantiny-in-memory.rb +3 -0
- metadata +8 -7
- data/lib/tantiny.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e23b6fa549c8adbed998d83708a05d5d52b4e1f30dee32a2db74237b395b085f
|
4
|
+
data.tar.gz: 0c76af9bbc305a4fa43a592e2d13aa6e879908821c3b075710418c3ee81c2cb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5ac4fa4a741bb14325df161a6725061d7194350468e1ae2021fbfca47048aa156c971c788a90629ab363393a4d5f0426da7fe15a5f8f3d8eb08d8c8af17cc04
|
7
|
+
data.tar.gz: b000b1f7400193fb83b96a765f94ffca2f56195cf04b026bd225000bc8044be17109e462fdec6c7f43257437968d578fb8029a19eea6e6ca36bc9e4322e9e6c4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.0.2](https://github.com/a-chris/tantiny-in-memory/compare/v1.0.1...v1.0.2) (2023-09-04)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* autoloading tantiny ([cdd54ea](https://github.com/a-chris/tantiny-in-memory/commit/cdd54ea7edf1db2de33bdd2e4e43d0f63a90b170))
|
9
|
+
|
10
|
+
## [1.0.1](https://github.com/a-chris/tantiny-in-memory/compare/v1.0.0...v1.0.1) (2023-09-04)
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* gemspec ([5adaaa4](https://github.com/a-chris/tantiny-in-memory/commit/5adaaa4c5c01ff78ec957ef8be2d13a2779dbcc1))
|
16
|
+
* reset changelog ([61834f1](https://github.com/a-chris/tantiny-in-memory/commit/61834f1b50c6cee30884e72cef365a81548811a9))
|
17
|
+
|
3
18
|
## 1.0.0 (2023-09-04)
|
4
19
|
|
5
20
|
### Features
|
data/Cargo.toml
CHANGED
@@ -0,0 +1,53 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Tantiny
|
4
|
+
class Schema
|
5
|
+
attr_reader :default_tokenizer,
|
6
|
+
:id_field,
|
7
|
+
:text_fields,
|
8
|
+
:string_fields,
|
9
|
+
:integer_fields,
|
10
|
+
:double_fields,
|
11
|
+
:date_fields,
|
12
|
+
:facet_fields,
|
13
|
+
:field_tokenizers
|
14
|
+
|
15
|
+
def initialize(tokenizer, &block)
|
16
|
+
@default_tokenizer = tokenizer
|
17
|
+
@id_field = :id
|
18
|
+
@text_fields = []
|
19
|
+
@string_fields = []
|
20
|
+
@integer_fields = []
|
21
|
+
@double_fields = []
|
22
|
+
@date_fields = []
|
23
|
+
@facet_fields = []
|
24
|
+
@field_tokenizers = {}
|
25
|
+
|
26
|
+
instance_exec(&block)
|
27
|
+
end
|
28
|
+
|
29
|
+
def tokenizer_for(field)
|
30
|
+
field_tokenizers[field] || default_tokenizer
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def id(key) ; @id_field = key; end
|
36
|
+
|
37
|
+
def string(key) ; @string_fields << key; end
|
38
|
+
|
39
|
+
def integer(key) ; @integer_fields << key; end
|
40
|
+
|
41
|
+
def double(key) ; @double_fields << key; end
|
42
|
+
|
43
|
+
def date(key) ; @date_fields << key; end
|
44
|
+
|
45
|
+
def facet(key) ; @facet_fields << key; end
|
46
|
+
|
47
|
+
def text(key, tokenizer: nil)
|
48
|
+
@field_tokenizers[key] = tokenizer if tokenizer
|
49
|
+
|
50
|
+
@text_fields << key
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
data/lib/tantiny/version.rb
CHANGED
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tantiny-in-memory
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Toscano
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2023-09-04 00:00:00.000000000 Z
|
@@ -80,7 +80,7 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '1.0'
|
83
|
-
description:
|
83
|
+
description:
|
84
84
|
email:
|
85
85
|
- a.christian.toscano@gmail.com
|
86
86
|
executables: []
|
@@ -95,8 +95,9 @@ files:
|
|
95
95
|
- bin/console
|
96
96
|
- bin/setup
|
97
97
|
- ext/Rakefile
|
98
|
+
- lib/.rbnext/3.0/tantiny/schema.rb
|
99
|
+
- lib/tantiny-in-memory.rb
|
98
100
|
- lib/tantiny.rb
|
99
|
-
- lib/tantiny.so
|
100
101
|
- lib/tantiny/errors.rb
|
101
102
|
- lib/tantiny/helpers.rb
|
102
103
|
- lib/tantiny/index.rb
|
@@ -126,7 +127,7 @@ metadata:
|
|
126
127
|
documentation_uri: https://github.com/a-chris/tantiny-in-memory/blob/master/README.md
|
127
128
|
homepage_uri: https://github.com/a-chris/tantiny-in-memory
|
128
129
|
source_code_uri: https://github.com/a-chris/tantiny-in-memory
|
129
|
-
post_install_message:
|
130
|
+
post_install_message:
|
130
131
|
rdoc_options: []
|
131
132
|
require_paths:
|
132
133
|
- lib
|
@@ -141,8 +142,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
141
142
|
- !ruby/object:Gem::Version
|
142
143
|
version: '0'
|
143
144
|
requirements: []
|
144
|
-
rubygems_version: 3.
|
145
|
-
signing_key:
|
145
|
+
rubygems_version: 3.3.26
|
146
|
+
signing_key:
|
146
147
|
specification_version: 4
|
147
148
|
summary: Tiny full-text search for Ruby powered by Tantivy but in memory!
|
148
149
|
test_files: []
|
data/lib/tantiny.so
DELETED
Binary file
|