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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d788fea6a41e9b49ebfeebb3461e5fc732f367778fd7a1346698c67527c235fa
4
- data.tar.gz: 3970305c914cc190e5d3d900846808f84af4d5963f7cd9ad43a33a29ea9805fa
3
+ metadata.gz: b47e288fa83e5dce1f6c79bba2a52b642e4b9ea230da79b39c3b2f74acc47c04
4
+ data.tar.gz: 9399ac56f8e81deb3ea63aef63870ec9410225f62e8723bb0dea54fe3a51b991
5
5
  SHA512:
6
- metadata.gz: c72b2140fa1d197630dccc977243e8bcd5d6d903f666bd872afb74e2bdbd807fb45075ff8702b43fb71aec0899b2b44758ce72f4e2da5dbf8c25ad8f3fbb0294
7
- data.tar.gz: 721421d62ac89010703e4a4c1db16622cbca32fbc79b9cd91f4774037759311c27ec3248372fdeee1e12f6e99368eb553d0fa87b09821831702689409c58bba1
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
 
@@ -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'
@@ -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
- CouchbaseOrm::Connection.bucket.default_collection.remove_multi(ids) unless ids.empty?
116
+ @model.bucket.default_collection.remove_multi(ids) unless ids.empty?
117
117
  end
118
118
 
119
119
  def where(string_cond=nil, **conds)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true, encoding: ASCII-8BIT
2
2
 
3
3
  module CouchbaseOrm
4
- VERSION = '3.0.1'
4
+ VERSION = '3.0.2'
5
5
  end
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.1
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: 2025-12-01 00:00:00.000000000 Z
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: []