openauth-redis-storage 0.7.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 +7 -0
- data/CHANGELOG.md +5 -0
- data/README.md +17 -0
- data/lib/openauth/redis/storage.rb +3 -0
- data/lib/openauth/redis_storage.rb +8 -0
- metadata +61 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 573d04911c48a2930fff832e7455d5910286a7d3f21816a643aa1db9738baf7c
|
|
4
|
+
data.tar.gz: 1e74d380ff562dc2c06976edafc071f079e06b5c314e14ccd87a7b5371815483
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 35f0e7a2c71d194d796e553d373bb62e2a5c623f3bda52ce1fb8759f45c58878aeaf83050ff128f846ab7206acd7f974d809ffa08bcb4d3ffaaa89395d6873cd
|
|
7
|
+
data.tar.gz: 8c13729a2c1c53243bb56b516c36901a63438593a668b8afbcb9addfc321753fc909755453f2df08f8889f93f82d2c6669ac56d6dd23b7042f53572ac8cc6a60
|
data/CHANGELOG.md
ADDED
data/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# openauth-redis-storage
|
|
2
|
+
|
|
3
|
+
Alias package for `better_auth-redis-storage`.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```ruby
|
|
8
|
+
gem "openauth-redis-storage"
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require "openauth/redis_storage"
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This package depends on `better_auth-redis-storage` and loads the canonical Better Auth Ruby Redis secondary storage package.
|
|
16
|
+
|
|
17
|
+
For documentation, visit https://better-auth-rb.vercel.app/.
|
metadata
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: openauth-redis-storage
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.7.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Sebastian Sala
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: better_auth-redis-storage
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - '='
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 0.7.0
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - '='
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: 0.7.0
|
|
26
|
+
description: OpenAuth Redis storage alias package that installs better_auth-redis-storage.
|
|
27
|
+
email:
|
|
28
|
+
- sebastian.sala.tech@gmail.com
|
|
29
|
+
executables: []
|
|
30
|
+
extensions: []
|
|
31
|
+
extra_rdoc_files: []
|
|
32
|
+
files:
|
|
33
|
+
- CHANGELOG.md
|
|
34
|
+
- README.md
|
|
35
|
+
- lib/openauth/redis/storage.rb
|
|
36
|
+
- lib/openauth/redis_storage.rb
|
|
37
|
+
homepage: https://better-auth-rb.vercel.app/
|
|
38
|
+
licenses:
|
|
39
|
+
- MIT
|
|
40
|
+
metadata:
|
|
41
|
+
homepage_uri: https://better-auth-rb.vercel.app/
|
|
42
|
+
source_code_uri: https://github.com/sebasxsala/better-auth
|
|
43
|
+
bug_tracker_uri: https://github.com/sebasxsala/better-auth/issues
|
|
44
|
+
rdoc_options: []
|
|
45
|
+
require_paths:
|
|
46
|
+
- lib
|
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
|
+
requirements:
|
|
49
|
+
- - ">="
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: 3.2.0
|
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
|
+
requirements:
|
|
54
|
+
- - ">="
|
|
55
|
+
- !ruby/object:Gem::Version
|
|
56
|
+
version: '0'
|
|
57
|
+
requirements: []
|
|
58
|
+
rubygems_version: 3.6.9
|
|
59
|
+
specification_version: 4
|
|
60
|
+
summary: Alias package for better_auth-redis-storage
|
|
61
|
+
test_files: []
|