tantiny 0.3.3 → 0.4.1

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.
@@ -1,25 +0,0 @@
1
- module Tantiny
2
- class Tokenizer
3
- def self.default: () -> Tokenizer
4
-
5
- def self.new: (Symbol kind, **untyped options) -> Tokenizer
6
-
7
- def self.__new_ngram_tokenizer: (
8
- Integer min,
9
- Integer max,
10
- bool prefix_only
11
- ) -> Tokenizer
12
-
13
- def self.__new_stemmer_tokenizer: (
14
- String locale_code
15
- ) -> Tokenizer
16
-
17
- def self.__new_simple_tokenizer: () -> Tokenizer
18
-
19
- public
20
-
21
- def terms: (String string) -> Array[String]
22
-
23
- def __extract_terms: (String string) -> Array[String]
24
- end
25
- end
@@ -1,3 +0,0 @@
1
- module Tantiny
2
- VERSION: String
3
- end
data/sig/tantiny.rbs DELETED
@@ -1,5 +0,0 @@
1
- module Tantiny
2
- type date = Date | DateTime
3
- type numeric = Integer | Float
4
- type fields = Array[Symbol] | Symbol
5
- end