global_session 3.2.8 → 3.2.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b38238ab7a15ce16b77e388316e79391daeb8c15
4
- data.tar.gz: c39282f982f39acbcebb816269f6755035db4edf
3
+ metadata.gz: 923d7b65ad5b94c5e25fa1fd97890609f7d05224
4
+ data.tar.gz: ff9c443de5cd6446205d3cb6da413388f7ff6eb5
5
5
  SHA512:
6
- metadata.gz: 70e47be4e108ee68cf9a6d826a6138796a1409c85b7bac2c53847ba12276a44aa0e8f47ab3ce80d6ed6092c19616d76d4efc22d406e874dd406e281fe8f3a118
7
- data.tar.gz: cfe7e8d87eb1008de76ae93cbf970e4c641f321c04e8fed0dea419244116fbf93ed4b6773149d8177c6cc084f149b8266eacfdc31e3cc5717b94ea9aea7434ea
6
+ metadata.gz: 35b6852f9d6109a5da8dba14e640dd4da6eda37a553cf4d2fc3f2afaedde9fe03fe2595e103f96347409e628199643c8245910efaf5f130fe27512dbad62abc2
7
+ data.tar.gz: fd3bee5a73a2905838424beaf242edf7c6a7644f7d1c909fc06343bcac9eed22442eb1920b4e47154c8532b06362c2d6b5163799903718e8fa67e59e5f7681e7
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.2.8
1
+ 3.2.9
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: global_session 3.2.8 ruby lib
5
+ # stub: global_session 3.2.9 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "global_session"
9
- s.version = "3.2.8"
9
+ s.version = "3.2.9"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Tony Spataro"]
14
- s.date = "2016-08-20"
14
+ s.date = "2016-09-13"
15
15
  s.description = "This Rack middleware allows several web apps in an authentication domain to share session state, facilitating single sign-on in a distributed web app. It only provides session sharing and does not concern itself with authentication or replication of the user database."
16
16
  s.email = "support@rightscale.com"
17
17
  s.extra_rdoc_files = [
@@ -66,7 +66,7 @@ module GlobalSession::Session
66
66
  'tc' => @created_at.to_i, 'te' => @expired_at.to_i,
67
67
  'ds' => @signed}
68
68
 
69
- if @signature && !dirty?
69
+ if @signature && !@dirty_secure
70
70
  #use cached signature unless we've changed secure state
71
71
  authority = @authority
72
72
  else
@@ -70,7 +70,7 @@ module GlobalSession::Session
70
70
  'tc' => @created_at.to_i, 'te' => @expired_at.to_i,
71
71
  'ds' => @signed}
72
72
 
73
- if @signature && !dirty?
73
+ if @signature && !@dirty_secure
74
74
  #use cached signature unless we've changed secure state
75
75
  authority = @authority
76
76
  else
@@ -159,7 +159,7 @@ module GlobalSession::Session
159
159
  'tc' => @created_at.to_i, 'te' => @expired_at.to_i,
160
160
  'ds' => @signed}
161
161
 
162
- if @signature && !dirty?
162
+ if @signature && !@dirty_secure
163
163
  #use cached signature unless we've changed secure state
164
164
  authority = @authority
165
165
  else
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: global_session
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.8
4
+ version: 3.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Spataro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-20 00:00:00.000000000 Z
11
+ date: 2016-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json