simple_session 0.3.3 → 0.3.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/simple_session/version.rb +1 -1
- data/simple_session.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ad5039432abb8e578ebf8352f9b269ed45f9a73
|
4
|
+
data.tar.gz: 557c1efd49e257f8a398f5c51f9a01eb62b6e01b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f364d409d91ca262fced3d43b52c4921d07089d703f13935b32e6d1763a0b601b73f58edcc6815ff64c225087d8460ffe674aaec60150a8fe185da345578c215
|
7
|
+
data.tar.gz: 78d337f1df0c81e2350529141265140d526b22b86865d9d28b034ec961bd16bcdddabf9dcb861b25734c9edae18d579e6b3244fe59f5f1368ce3fd6650528299
|
data/simple_session.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.summary = %q{A simple middleware providing rack with an
|
13
13
|
encrypted session cookie.}
|
14
14
|
spec.description = %q{Provides an AES-256-CBC encrypted session cookie signed
|
15
|
-
with
|
15
|
+
with an HMAC digest in a double ended manor.
|
16
16
|
Cookie options include max-age, path, domain, http-only,
|
17
17
|
and secure. Honors Rack's
|
18
18
|
methods like session and request.session_options}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_session
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- hayduke19us
|
@@ -123,7 +123,7 @@ dependencies:
|
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
125
|
description: "Provides an AES-256-CBC encrypted session cookie signed\n with
|
126
|
-
|
126
|
+
an HMAC digest in a double ended manor. \n Cookie options
|
127
127
|
include max-age, path, domain, http-only,\n and secure.
|
128
128
|
Honors Rack's\n methods like session and request.session_options"
|
129
129
|
email:
|