memcached_store 2.1.4 → 2.1.5
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 +2 -2
- data/lib/memcached_store/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4635e49b33c70f622363339dda844ed847785724779b9fa7820d4a34dbf372f8
|
|
4
|
+
data.tar.gz: 2371f00c595f4b9fb5f4fd37621a591e8ac11125b53467dbbd990febfa9296d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 18831e059e7db2fae9d3733baa244f2ba69050bfc1d72ecd72dd80332a0e525b50a409f98cb76d224450fce01919e29695ba3c5585cadc42bfaef1b66474ac72
|
|
7
|
+
data.tar.gz: cc44c59b08101ac3934ce59b90c89179d0b88c64dd519d265b81e76adbb09c8d3e2f5b4445e7de6e8c73973df615c46a613a29dd5f9c0db8acfa6d2c788d4445
|
|
@@ -134,7 +134,7 @@ module ActiveSupport
|
|
|
134
134
|
entry = deserialize_entry(raw_value)
|
|
135
135
|
value = yield entry.value
|
|
136
136
|
break true if read_only
|
|
137
|
-
serialize_entry(Entry.new(value, options), options)
|
|
137
|
+
serialize_entry(Entry.new(value, **options), options)
|
|
138
138
|
end
|
|
139
139
|
end
|
|
140
140
|
true
|
|
@@ -162,7 +162,7 @@ module ActiveSupport
|
|
|
162
162
|
break true if read_only
|
|
163
163
|
|
|
164
164
|
serialized_values = values.map do |name, value|
|
|
165
|
-
[normalize_key(name, options), serialize_entry(Entry.new(value, options), options)]
|
|
165
|
+
[normalize_key(name, options), serialize_entry(Entry.new(value, **options), options)]
|
|
166
166
|
end
|
|
167
167
|
|
|
168
168
|
Hash[serialized_values]
|
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.1.
|
|
4
|
+
version: 2.1.5
|
|
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:
|
|
14
|
+
date: 2020-05-25 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: activesupport
|
|
@@ -75,7 +75,8 @@ files:
|
|
|
75
75
|
homepage: https://github.com/Shopify/memcached_store/
|
|
76
76
|
licenses:
|
|
77
77
|
- MIT
|
|
78
|
-
metadata:
|
|
78
|
+
metadata:
|
|
79
|
+
allowed_push_host: https://rubygems.org
|
|
79
80
|
post_install_message:
|
|
80
81
|
rdoc_options: []
|
|
81
82
|
require_paths:
|
|
@@ -91,8 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
91
92
|
- !ruby/object:Gem::Version
|
|
92
93
|
version: '0'
|
|
93
94
|
requirements: []
|
|
94
|
-
|
|
95
|
-
rubygems_version: 2.7.6
|
|
95
|
+
rubygems_version: 3.0.3
|
|
96
96
|
signing_key:
|
|
97
97
|
specification_version: 4
|
|
98
98
|
summary: Plugin-able Memcached adapters to add features (compression, safety)
|