memcached_store 2.3.2 → 2.3.4
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/active_support/cache/memcached_store.rb +3 -3
- data/lib/memcached_store/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: 35c62775da1377543a0a6720634ffb2a8305f9797f68f953321fe6172601c474
|
4
|
+
data.tar.gz: 1a6faa8fbc0e24c90368596627cd0811619be98bc3b752605eef244e99a489fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: edb29ef36b023d97373270005715f2c734b28779e889dd4a5c3dbf9a7147314198e719d0b296acee7426f621f8157c321c906f1095284809333ac5806e7bc492
|
7
|
+
data.tar.gz: e842f684725982fec3815f225a76edaa65c558bec03330fa016382c1acfe16b3dff4f58bde75d1105f5f7395cb438e1cbb9c42b7b5b8a1f5b07b66aa0d85db43
|
@@ -325,7 +325,7 @@ module ActiveSupport
|
|
325
325
|
end
|
326
326
|
end
|
327
327
|
|
328
|
-
def delete_entry(key, _options) # :nodoc:
|
328
|
+
def delete_entry(key, _options = nil) # :nodoc:
|
329
329
|
return true if read_only
|
330
330
|
handle_exceptions(return_value_on_error: false, on_miss: true) do
|
331
331
|
@connection.delete(key)
|
@@ -350,8 +350,8 @@ module ActiveSupport
|
|
350
350
|
end
|
351
351
|
end
|
352
352
|
|
353
|
-
def serialize_entry(entry, options)
|
354
|
-
if options[:raw]
|
353
|
+
def serialize_entry(entry, options = nil)
|
354
|
+
if options && options[:raw]
|
355
355
|
entry.value.to_s
|
356
356
|
else
|
357
357
|
entry
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: memcached_store
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Camilo Lopez
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2023-
|
14
|
+
date: 2023-10-16 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: activesupport
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
120
|
- !ruby/object:Gem::Version
|
121
121
|
version: '0'
|
122
122
|
requirements: []
|
123
|
-
rubygems_version: 3.4.
|
123
|
+
rubygems_version: 3.4.20
|
124
124
|
signing_key:
|
125
125
|
specification_version: 4
|
126
126
|
summary: Plugin-able Memcached adapters to add features (compression, safety)
|