mongodb_meilisearch 1.3.0 → 2.1.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 +4 -4
- data/Gemfile.lock +5 -4
- data/README.org +648 -0
- data/lib/mongodb_meilisearch/version.rb +1 -1
- data/lib/search/class_methods.rb +25 -19
- data/lib/search/client.rb +178 -21
- data/lib/search/errors.rb +7 -0
- data/lib/search/instance_methods.rb +11 -10
- metadata +5 -4
- data/README.md +0 -531
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f94879936fd02812f5a9e9887ce71774edf2049f5b03610196e8a25af558e32c
|
|
4
|
+
data.tar.gz: 1078bb0b874e10957d95a5583423a22304fba95b6016f4115407dee6c4c9bee2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f41b528068bf5bd587e399ab71f502dcbf9ccdb4f8b4c1c282448335f0f4bc98a69372345f205c536c27e88585bfaa080d1f8c76b42ceac396aa5c8f9ae478f0
|
|
7
|
+
data.tar.gz: f594659bcdd20c7e0a2cdebfc30731d17f3e82abf681a2bc343f92b98f2f204b42e3193653b2af11ff1fa517d54f02fc51a26a10073ee07616e0437b8b1d82e4
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
mongodb_meilisearch (1.
|
|
4
|
+
mongodb_meilisearch (2.1.0)
|
|
5
5
|
meilisearch
|
|
6
6
|
mongoid (~> 7.0)
|
|
7
7
|
rails
|
|
@@ -111,6 +111,7 @@ GEM
|
|
|
111
111
|
httparty (>= 0.17.1, < 0.22.0)
|
|
112
112
|
method_source (1.0.0)
|
|
113
113
|
mini_mime (1.1.2)
|
|
114
|
+
mini_portile2 (2.8.7)
|
|
114
115
|
minitest (5.18.1)
|
|
115
116
|
mongo (2.19.0)
|
|
116
117
|
bson (>= 4.14.1, < 5.0.0)
|
|
@@ -129,9 +130,8 @@ GEM
|
|
|
129
130
|
net-smtp (0.3.3)
|
|
130
131
|
net-protocol
|
|
131
132
|
nio4r (2.5.9)
|
|
132
|
-
nokogiri (1.15.3
|
|
133
|
-
|
|
134
|
-
nokogiri (1.15.3-x86_64-linux)
|
|
133
|
+
nokogiri (1.15.3)
|
|
134
|
+
mini_portile2 (~> 2.8.2)
|
|
135
135
|
racc (~> 1.4)
|
|
136
136
|
parallel (1.23.0)
|
|
137
137
|
parser (3.2.2.3)
|
|
@@ -222,6 +222,7 @@ GEM
|
|
|
222
222
|
|
|
223
223
|
PLATFORMS
|
|
224
224
|
arm64-darwin-22
|
|
225
|
+
arm64-darwin-23
|
|
225
226
|
x86_64-linux
|
|
226
227
|
|
|
227
228
|
DEPENDENCIES
|