redis-activesupport 5.2.1 → 5.3.0

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: 97eb2a5bdf33332f087f0f23209184624afa1800baf44ed0cbae6c1b8da90ed4
4
- data.tar.gz: 349ad4d2542eb8a0d92ead51e26415a18e7a918587d5104f1439b983cbdaf7ca
3
+ metadata.gz: 1701d0f906647612a49e32325e5e3d4cef491fa6e4742b145482a7ad3f2b97b8
4
+ data.tar.gz: 4fcc1fa74965a7d624aa505874af54c2f49f379357deb5c0ce59efb1e4c7a91e
5
5
  SHA512:
6
- metadata.gz: cfe500173fb4d0633c0efb04e9e0841532f61dfd47d57865c2acb8eb03e102eab0283b6ad245b5b44fbe1270712143348d2b613d800d3c648ceac51dd1e49ddc
7
- data.tar.gz: 5a7656320765a145c2f2bcde246a9a54e14cc6bba5488704f8ff10a9503f4218385a4743f3b215af50375d202a17ae6efeee41cf68fa4bcb0206bd280954891e
6
+ metadata.gz: '08fed28507f699223f4fd6ccc344a87d81f135e23837effc913353a8790f1db867dac62e54df107346b4eb01e441873b16675085714673c7fa1efcf9078a62e3'
7
+ data.tar.gz: 0527ae9cd279eb6b23a0519593a218ad46bc2e2b31cdef48f79571d1f1792b58f2cd92122d7e4b4c2417ab027240cccce47b23435c32f339dcd2d852c52d7738
data/README.md CHANGED
@@ -1,3 +1,11 @@
1
+ # This gem is in LTS mode.
2
+
3
+ Rails 5.2.0 [includes a Redis cache store out of the
4
+ box](https://github.com/rails/rails/pull/31134), so you don't really
5
+ need this anymore if you're generating a new Rails application. We
6
+ are no longer accepting new features for this gem, only security
7
+ updates will be considered for new pull requests.
8
+
1
9
  # Redis stores for ActiveSupport
2
10
 
3
11
  __`redis-activesupport`__ provides a cache for __ActiveSupport__.
@@ -9,14 +17,6 @@ For information on how to use this library in a Rails app, see the [documentatio
9
17
 
10
18
  If, for some reason, you're using `ActiveSupport::Cache` and not in a Rails app, read on to learn how to install/use this gem by itself!
11
19
 
12
- ## A quick note about Rails 5.2
13
-
14
- Rails 5.2.0 [includes a Redis cache store out of the
15
- box](https://github.com/rails/rails/pull/31134), so you don't really
16
- need this anymore if you're generating a new Rails application. We
17
- are no longer accepting new features for this gem, only pull requests
18
- for security and compatibility fixes will be accepted.
19
-
20
20
  ## Installation
21
21
 
22
22
  ```ruby
@@ -302,7 +302,7 @@ module ActiveSupport
302
302
  #
303
303
  # It's really needed and use
304
304
  #
305
- def delete_entry(key, options)
305
+ def delete_entry(key, **options)
306
306
  failsafe(:delete_entry, returning: false) do
307
307
  with { |c| c.del key }
308
308
  end
@@ -1,5 +1,5 @@
1
1
  class Redis
2
2
  module ActiveSupport
3
- VERSION = '5.2.1'
3
+ VERSION = '5.3.0'
4
4
  end
5
5
  end
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ['lib']
20
20
 
21
21
  s.add_runtime_dependency "redis-store", '>= 1.3', '< 2'
22
- s.add_runtime_dependency 'activesupport', '>= 3', '< 7'
22
+ s.add_runtime_dependency 'activesupport', '>= 3', '< 8'
23
23
 
24
24
  s.add_development_dependency 'rake', '>= 12.3.3'
25
25
  s.add_development_dependency 'bundler'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-activesupport
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.1
4
+ version: 5.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luca Guidi
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-05-27 00:00:00.000000000 Z
12
+ date: 2022-01-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: redis-store
@@ -40,7 +40,7 @@ dependencies:
40
40
  version: '3'
41
41
  - - "<"
42
42
  - !ruby/object:Gem::Version
43
- version: '7'
43
+ version: '8'
44
44
  type: :runtime
45
45
  prerelease: false
46
46
  version_requirements: !ruby/object:Gem::Requirement
@@ -50,7 +50,7 @@ dependencies:
50
50
  version: '3'
51
51
  - - "<"
52
52
  - !ruby/object:Gem::Version
53
- version: '7'
53
+ version: '8'
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: rake
56
56
  requirement: !ruby/object:Gem::Requirement
@@ -216,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
216
  - !ruby/object:Gem::Version
217
217
  version: '0'
218
218
  requirements: []
219
- rubygems_version: 3.1.2
219
+ rubygems_version: 3.2.11
220
220
  signing_key:
221
221
  specification_version: 4
222
222
  summary: Redis store for ActiveSupport