memcached_store 2.1.4 → 2.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e1be6cf279577a433dd936dc795db98c8e53698cac9fad2de947be61b0aa8f9
4
- data.tar.gz: f4875930dbbd796739692b5cb5f1bee1b57fa3670828b57f1470e03106898dfc
3
+ metadata.gz: 4635e49b33c70f622363339dda844ed847785724779b9fa7820d4a34dbf372f8
4
+ data.tar.gz: 2371f00c595f4b9fb5f4fd37621a591e8ac11125b53467dbbd990febfa9296d9
5
5
  SHA512:
6
- metadata.gz: 87d832cc413769c062ea84b27f5d74cfa99fdb568129bdb22a2ce3836301eb3f7cbfc9f37e4334dedb0081f6fe87469e7215065c60fb02acef5403e7574db5b5
7
- data.tar.gz: 381aab02270b4f9fa7db911429dcbd3fc209878b88a52e0d5180a93c6aa29c18bca91bcb78c0294c94b1f48b6ad0ce1943870b941f6d0104f891a823d0acc7cc
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]
@@ -1,4 +1,4 @@
1
1
  # encoding: utf-8
2
2
  module MemcachedStore
3
- VERSION = "2.1.4"
3
+ VERSION = "2.1.5"
4
4
  end
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
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: 2018-12-10 00:00:00.000000000 Z
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
- rubyforge_project:
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)