couchbase-orm 3.0.1 → 3.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/README.md +2 -2
- data/couchbase-orm.gemspec +1 -1
- data/docusaurus/static/CNAME +1 -1
- data/lib/couchbase-orm/relation.rb +1 -1
- data/lib/couchbase-orm/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b47e288fa83e5dce1f6c79bba2a52b642e4b9ea230da79b39c3b2f74acc47c04
|
|
4
|
+
data.tar.gz: 9399ac56f8e81deb3ea63aef63870ec9410225f62e8723bb0dea54fe3a51b991
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c273e16e128285e2505b75ba24de4910bc99db1b8e66cf4766d8f2b4e21e1046d171ac1bac241b4a463fb72c1debcd5dbedbd82d634dcba2e9f541b663dcf767
|
|
7
|
+
data.tar.gz: e088c516e11d8fd6a79b060c69c388a54e6fd8ce769532b1f3201b07858e4405a2e837659a8ec97a7524632f23c638334c96e606fa693cf59d7487155e33136d
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Couchbase ORM for Rails
|
|
2
2
|
|
|
3
3
|
## Documentation
|
|
4
|
-
https://couchbase-ruby-orm.com
|
|
4
|
+
https://www.couchbase-ruby-orm.com
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
@@ -117,7 +117,7 @@ The following types have been tested :
|
|
|
117
117
|
- See <https://docs.couchbase.com/couchbase-lite/current/c/field-level-encryption.html>
|
|
118
118
|
- **Important**: CouchbaseOrm does not perform encryption/decryption - your application must encrypt data before storing it
|
|
119
119
|
- Values must be Base64-encoded strings containing pre-encrypted ciphertext
|
|
120
|
-
- See the [encryption documentation](https://couchbase-ruby-orm.com/docs/tutorial-ruby-couchbase-orm/encryption) for details
|
|
120
|
+
- See the [encryption documentation](https://www.couchbase-ruby-orm.com/docs/tutorial-ruby-couchbase-orm/encryption) for details
|
|
121
121
|
- :array (see below)
|
|
122
122
|
- :nested (see below)
|
|
123
123
|
|
data/couchbase-orm.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |gem|
|
|
|
9
9
|
gem.metadata = {
|
|
10
10
|
"source_code_uri" => "https://github.com/Couchbase-Ecosystem/couchbase-ruby-orm",
|
|
11
11
|
"bug_tracker_uri" => "https://github.com/Couchbase-Ecosystem/couchbase-ruby-orm/issues",
|
|
12
|
-
"documentation_uri" => "https://couchbase-ruby-orm.com/",
|
|
12
|
+
"documentation_uri" => "https://www.couchbase-ruby-orm.com/",
|
|
13
13
|
"homepage_uri" => "https://github.com/Couchbase-Ecosystem/couchbase-ruby-orm"
|
|
14
14
|
}
|
|
15
15
|
gem.summary = 'Couchbase ORM for Rails'
|
data/docusaurus/static/CNAME
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
couchbase-ruby-orm.com
|
|
1
|
+
www.couchbase-ruby-orm.com
|
|
@@ -113,7 +113,7 @@ module CouchbaseOrm
|
|
|
113
113
|
def delete_all
|
|
114
114
|
CouchbaseOrm::logger.debug{ "Delete all: #{self}" }
|
|
115
115
|
ids = query.to_a
|
|
116
|
-
|
|
116
|
+
@model.bucket.default_collection.remove_multi(ids) unless ids.empty?
|
|
117
117
|
end
|
|
118
118
|
|
|
119
119
|
def where(string_cond=nil, **conds)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: couchbase-orm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen von Takach
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date:
|
|
14
|
+
date: 2026-03-09 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: activemodel
|
|
@@ -352,7 +352,7 @@ licenses:
|
|
|
352
352
|
metadata:
|
|
353
353
|
source_code_uri: https://github.com/Couchbase-Ecosystem/couchbase-ruby-orm
|
|
354
354
|
bug_tracker_uri: https://github.com/Couchbase-Ecosystem/couchbase-ruby-orm/issues
|
|
355
|
-
documentation_uri: https://couchbase-ruby-orm.com/
|
|
355
|
+
documentation_uri: https://www.couchbase-ruby-orm.com/
|
|
356
356
|
homepage_uri: https://github.com/Couchbase-Ecosystem/couchbase-ruby-orm
|
|
357
357
|
post_install_message:
|
|
358
358
|
rdoc_options: []
|