mt-libcouchbase 1.4.0 → 1.4.01
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/lib/mt-libcouchbase/version.rb +1 -1
- data/spec/bucket_spec.rb +1 -1
- data/spec/connection_spec.rb +1 -1
- data/spec/fts_spec.rb +1 -1
- data/spec/n1ql_spec.rb +2 -2
- data/spec/results_libuv_spec.rb +1 -1
- data/spec/results_native_spec.rb +1 -1
- data/spec/subdoc_spec.rb +1 -1
- data/spec/view_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43d2701d4c63b09ba54f884912c54cfa50f3895db157d3223c783d42132baac4
|
|
4
|
+
data.tar.gz: 212470c2403694e7d2c0a3bbefced7f1b2fff3c35a27f7c61e6d965c79d6f654
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2314a4098b853010e7c9392e4c8aaafcc3e6e48ca4eb6fb23d032e4eab6fd4ab67d08eff7fb9bf12c8a155a10b5e88a9188a2863e79787456325d90b057b4449
|
|
7
|
+
data.tar.gz: de4aabbde6450ac10ed270c53b7fb196b932b712afca0ec0038bf669cae4328b70af4d0a1bb0ad01f29bf01e10980ae619f16fdfda94e988481de381cf6dab75
|
data/spec/bucket_spec.rb
CHANGED
data/spec/connection_spec.rb
CHANGED
data/spec/fts_spec.rb
CHANGED
|
@@ -7,7 +7,7 @@ describe MTLibcouchbase::QueryFullText, full_text_search: true do
|
|
|
7
7
|
before :each do
|
|
8
8
|
# This will load the couchbase connection on a different thread
|
|
9
9
|
@bucket = MTLibcouchbase::Bucket.new
|
|
10
|
-
@reactor = ::
|
|
10
|
+
@reactor = ::MTLibuv::Reactor.default
|
|
11
11
|
@log = []
|
|
12
12
|
end
|
|
13
13
|
|
data/spec/n1ql_spec.rb
CHANGED
|
@@ -97,7 +97,7 @@ describe MTLibcouchbase::N1QL, n1ql_query: true do
|
|
|
97
97
|
context "without error syntax query" do
|
|
98
98
|
before :each do
|
|
99
99
|
@n1ql.select('*').from(:default).where('type == "mod"')
|
|
100
|
-
@reactor = ::
|
|
100
|
+
@reactor = ::MTLibuv::Reactor.default
|
|
101
101
|
end
|
|
102
102
|
|
|
103
103
|
it "should iterate results" do
|
|
@@ -160,7 +160,7 @@ describe MTLibcouchbase::N1QL, n1ql_query: true do
|
|
|
160
160
|
context "with error syntax query" do
|
|
161
161
|
before :each do
|
|
162
162
|
@n1ql.select('*azdzadazdzadza').from(:default).where('type == "mod"')
|
|
163
|
-
@reactor = ::
|
|
163
|
+
@reactor = ::MTLibuv::Reactor.default
|
|
164
164
|
end
|
|
165
165
|
it "should cancel iteration" do
|
|
166
166
|
results = @n1ql.results
|
data/spec/results_libuv_spec.rb
CHANGED
data/spec/results_native_spec.rb
CHANGED
data/spec/subdoc_spec.rb
CHANGED
data/spec/view_spec.rb
CHANGED