redis-activesupport 5.2.1 → 5.3.0
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/README.md +8 -8
- data/lib/active_support/cache/redis_store.rb +1 -1
- data/lib/redis/active_support/version.rb +1 -1
- data/redis-activesupport.gemspec +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: 1701d0f906647612a49e32325e5e3d4cef491fa6e4742b145482a7ad3f2b97b8
|
|
4
|
+
data.tar.gz: 4fcc1fa74965a7d624aa505874af54c2f49f379357deb5c0ce59efb1e4c7a91e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/redis-activesupport.gemspec
CHANGED
|
@@ -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', '<
|
|
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.
|
|
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:
|
|
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: '
|
|
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: '
|
|
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.
|
|
219
|
+
rubygems_version: 3.2.11
|
|
220
220
|
signing_key:
|
|
221
221
|
specification_version: 4
|
|
222
222
|
summary: Redis store for ActiveSupport
|