minifts 1.0.0
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 +7 -0
- data/CHANGELOG.md +25 -0
- data/CODE_OF_CONDUCT.md +10 -0
- data/LICENSE.txt +21 -0
- data/README.md +302 -0
- data/Rakefile +36 -0
- data/lib/minifts/searchable_map.rb +401 -0
- data/lib/minifts/version.rb +5 -0
- data/lib/minifts.rb +944 -0
- metadata +54 -0
metadata
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: minifts
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Rodrigo Serradura
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: 'A pure-Ruby port of the MiniSearch full-text search engine: BM25+ scoring,
|
|
13
|
+
prefix and fuzzy matching, query combinators, and auto-suggestions, over a radix-tree
|
|
14
|
+
inverted index. No native extensions, no runtime dependencies, runs on every Ruby
|
|
15
|
+
since 2.4.'
|
|
16
|
+
email:
|
|
17
|
+
- rodrigo.serradura@gmail.com
|
|
18
|
+
executables: []
|
|
19
|
+
extensions: []
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- CHANGELOG.md
|
|
23
|
+
- CODE_OF_CONDUCT.md
|
|
24
|
+
- LICENSE.txt
|
|
25
|
+
- README.md
|
|
26
|
+
- Rakefile
|
|
27
|
+
- lib/minifts.rb
|
|
28
|
+
- lib/minifts/searchable_map.rb
|
|
29
|
+
- lib/minifts/version.rb
|
|
30
|
+
homepage: https://github.com/serradura/minifts
|
|
31
|
+
licenses:
|
|
32
|
+
- MIT
|
|
33
|
+
metadata:
|
|
34
|
+
homepage_uri: https://github.com/serradura/minifts
|
|
35
|
+
source_code_uri: https://github.com/serradura/minifts
|
|
36
|
+
changelog_uri: https://github.com/serradura/minifts/blob/main/CHANGELOG.md
|
|
37
|
+
rdoc_options: []
|
|
38
|
+
require_paths:
|
|
39
|
+
- lib
|
|
40
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
41
|
+
requirements:
|
|
42
|
+
- - ">="
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: 2.4.0
|
|
45
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
|
+
requirements:
|
|
47
|
+
- - ">="
|
|
48
|
+
- !ruby/object:Gem::Version
|
|
49
|
+
version: '0'
|
|
50
|
+
requirements: []
|
|
51
|
+
rubygems_version: 4.0.16
|
|
52
|
+
specification_version: 4
|
|
53
|
+
summary: A tiny, dependency-free in-memory full-text search engine.
|
|
54
|
+
test_files: []
|