cookieless_sessions 1.1.0 → 1.2.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: f8f1c9a54ca095e017552171b3a394659fad22f0
4
- data.tar.gz: 83cc2e45e98c1c1b45e112f1ec8090661b268071
3
+ metadata.gz: 736b46e4dd9e5239504ff24733864a5ec362b93e
4
+ data.tar.gz: ba14d59adc1775334f98aa1f3114b749654adcdb
5
5
  SHA512:
6
- metadata.gz: 32104fd93315c65ea6b282c6edd184ab2ead06cd8e292269df47a4443de2c33d7c70146a877ae9cbbf28e7ae8ecc8286a8a215cf54563bb758ac12b0e50ce784
7
- data.tar.gz: 43ad499eb42eb20c48acc718b02fc3d3bc39e7fc066fc508498b0d8f30ed402503d564475a7311884e370ac22fd84e3190a54d528a2394dd2ce41452c6af3067
6
+ metadata.gz: ebdad76db1941cf8f8ac167110c590125966becc36c8d0cd76e3aef056f6c108a29a2591a8912edd780238ac93f3407d43300f9d76a5ee7d36a9f9da1c53e6d8
7
+ data.tar.gz: 22c978c86e067d1ea180e27562d034e3629dd11bb14f3cd7aaf70c6c6e35881d420cfc172662c5829928f278dd47a333daacc38142f52de6b3fe8cd015e8d7b9
@@ -13,6 +13,7 @@ gemfile:
13
13
  - Gemfile.rails-4.1.x
14
14
  - Gemfile.rails-4.2.x
15
15
  - Gemfile.rails-5.0.x
16
+ - Gemfile.rails-5.1.x
16
17
  - Gemfile.rails-head
17
18
  matrix:
18
19
  allow_failures:
@@ -22,10 +23,16 @@ matrix:
22
23
  exclude:
23
24
  - rvm: '1.9.3'
24
25
  gemfile: Gemfile.rails-5.0.x
26
+ - rvm: '1.9.3'
27
+ gemfile: Gemfile.rails-5.1.x
25
28
  - rvm: '2.0.0'
26
29
  gemfile: Gemfile.rails-5.0.x
30
+ - rvm: '2.0.0'
31
+ gemfile: Gemfile.rails-5.1.x
27
32
  - rvm: '2.1.1'
28
33
  gemfile: Gemfile.rails-5.0.x
34
+ - rvm: '2.1.1'
35
+ gemfile: Gemfile.rails-5.1.x
29
36
  - rvm: '2.2.7'
30
37
  gemfile: Gemfile.rails-4.0.x
31
38
  - rvm: '2.2.7'
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in frikandel.gemspec
4
+ gemspec
5
+
6
+ gem 'rails', '~> 5.1.0'
data/README.md CHANGED
@@ -18,7 +18,7 @@ Rails uses the result of _default_url_options_ method for Path / URL generation.
18
18
 
19
19
  ## Requirements
20
20
 
21
- An application based on Rails 4.x or 5.0 configured with a session storage that supports the _cookie_only: false_ option (e.g. [redis-session-store](https://rubygems.org/gems/redis-session-store)).
21
+ An application based on Rails 4.x or 5.x configured with a session storage that supports the _cookie_only: false_ option (e.g. [redis-session-store](https://rubygems.org/gems/redis-session-store)).
22
22
 
23
23
  ## Installation
24
24
 
@@ -96,9 +96,11 @@ To run the test suite with different rails version by selecting the correspondin
96
96
  $ export BUNDLE_GEMFILE=Gemfile.rails-4.1.x && bundle update && bundle exec rake spec
97
97
  $ export BUNDLE_GEMFILE=Gemfile.rails-4.2.x && bundle update && bundle exec rake spec
98
98
  $ export BUNDLE_GEMFILE=Gemfile.rails-5.0.x && bundle update && bundle exec rake spec
99
+ $ export BUNDLE_GEMFILE=Gemfile.rails-5.1.x && bundle update && bundle exec rake spec
99
100
 
100
101
  ## Changes
101
102
 
103
+ * v1.2.0 -- added support for rails-5.1
102
104
  * v1.1.0 -- added support for rails-5.0; remove support for rails-3.2
103
105
  * v1.0.1 -- added Rails32DestroyableSessionPatch: sets SID in options on destroy
104
106
  * v1.0.0 -- first release with complete README; no code changes
@@ -1,3 +1,3 @@
1
1
  module CookielessSessions
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cookieless_sessions
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taktsoft
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-19 00:00:00.000000000 Z
11
+ date: 2017-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis-session-store
@@ -220,6 +220,7 @@ files:
220
220
  - Gemfile.rails-4.1.x
221
221
  - Gemfile.rails-4.2.x
222
222
  - Gemfile.rails-5.0.x
223
+ - Gemfile.rails-5.1.x
223
224
  - Gemfile.rails-head
224
225
  - Guardfile
225
226
  - LICENSE.txt