encrypted-cookie-store 0.3.2 → 1.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.
- data/README.rdoc +4 -0
- data/encrypted-cookie-store.gemspec +1 -1
- data/lib/encrypted-cookie-store/version.rb +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
= Encrypted Cookie Store
|
2
2
|
|
3
|
+
== Important Notice
|
4
|
+
|
5
|
+
+encrypted-cookies+ has breaking changes in v1.0. Session cookies written with v0.3.* will no be able to be read by v1.0. Fix your version of +encrypted-cookie-store+ to v0.3.2 if you don't want to make the switch. See +encrypted-cookies+ if you want more information about the change.
|
6
|
+
|
3
7
|
== Description
|
4
8
|
|
5
9
|
Encrypted cookie based session for Rails 3.
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: encrypted-cookie-store
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0
|
5
|
+
version: "1.0"
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Les Fletcher
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
requirements:
|
33
33
|
- - ~>
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: "0
|
35
|
+
version: "1.0"
|
36
36
|
type: :runtime
|
37
37
|
version_requirements: *id002
|
38
38
|
description: Add an encrypted cookie session store for Rails 3
|