hestia 0.0.3 → 0.1.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee2e639cd00c467444c76fed6a718f9df5670834
|
4
|
+
data.tar.gz: 9122b7533ed0358a108bd56be5333e420f8d54c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0086cb17ecff3769ecbfdf4d682102f7bd42bf04e671c9307ad4e20202b7593e153627432378583beb46c12106e8ad272cd92073b4e50b8b7abd4d8d69deaa96
|
7
|
+
data.tar.gz: d569bf9fd318e862f31539bcec7306ee45bc84668f614cd171baaa5b9c78b0c7895663e2319aecf15f23b848ceac2387ee886dd8a54f8a8f4f0b606cf3638935
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -49,7 +49,7 @@ You should already have `Rails.application.config.secret_token` set to a value (
|
|
49
49
|
|
50
50
|
### Rails 4
|
51
51
|
|
52
|
-
We support Rails 4.
|
52
|
+
We support Rails 4.1. Rails 4.0 & 4.2 are unsupported at this time. (Pull requests welcome!)
|
53
53
|
|
54
54
|
Following the instructions for Rails 3.2 should work, but make sure you haven't set `config.secret_key_base` to a value otherwise Rails will take over and upgrade your cookies from signed to encrypted ones.
|
55
55
|
|
@@ -30,7 +30,7 @@ module Hestia
|
|
30
30
|
end
|
31
31
|
|
32
32
|
# Finally, override @verifier with our own multi verifier containing all the secrets
|
33
|
-
@verifier = Hestia::MessageMultiVerifier.new(current_secret: active_secret, deprecated_secrets: deprecated_secrets)
|
33
|
+
@verifier = Hestia::MessageMultiVerifier.new(current_secret: active_secret, deprecated_secrets: deprecated_secrets, options: {serializer: ActionDispatch::Cookies::NullSerializer})
|
34
34
|
end
|
35
35
|
end
|
36
36
|
end
|
data/lib/hestia/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hestia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Caius Durling
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-07-
|
11
|
+
date: 2015-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -98,7 +98,6 @@ files:
|
|
98
98
|
- ".gitignore"
|
99
99
|
- ".travis.yml"
|
100
100
|
- Gemfile.rails3
|
101
|
-
- Gemfile.rails4
|
102
101
|
- Gemfile.rails41
|
103
102
|
- LICENSE.txt
|
104
103
|
- README.md
|