auto-session-timeout 0.9.9 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dee94e3d3dc455152461cede0c60297d6aa1b0374ebf4ad1a907b5dc22624248
4
- data.tar.gz: 99a6fba023bdd08410c8f2f7e95bd45c66c73327c4cb1b77ff6012b36d3f4fcd
3
+ metadata.gz: 20b023ebb43111d703d1175daf0826640c89f452a28f513d9a2f7882929f7dc4
4
+ data.tar.gz: f0aefb518e821056121e21801fca26fe356f86c6a433e5321a3c76dcb68ff135
5
5
  SHA512:
6
- metadata.gz: 9d9e346cd1a79e8528ec4bf22bead52d999a1b4961aa92f1cd5b11a6d1b54131e3201b442447e85df1c6ef2abdc3254390a8ce86c4f6a6c8d523041250a1d7ef
7
- data.tar.gz: 9c5fbfd43a32d7596afdb02622bd51c35a9d94219d52c4885dc25dfcbeea75e4613437f53e87aa1a8a694bd51df9aebcdd3cd967ca110185cfe3568997a5a637
6
+ metadata.gz: 230b921f57492287baa5b645b72ff20c8343a4494d86694d3c58a707bdd68ed0c27c5ea1ee1d857982966e8a53f71467489666d7fb65860df041ba7d60f1f148
7
+ data.tar.gz: d8abe691e2dc760d80b819c42257bdb7a2a67cac11e5f873d46acb5983eb61e35e9e3c85ac2020d5d1f7dcd91dbc1f5da3f6b59b3d1b2fdfa75517ab76591352
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ 2023-01-18 - v1.0
2
+
3
+ 2023-01-18 - Compatablity issue with Rack 2.2.4 [GearoidDC]
4
+ 2022-01-20 - Use GitHub Actions build badge [pelargir]
5
+
1
6
  2022-01-04 - v0.9.9
2
7
 
3
8
  2022-01-04 - Rails 7 compatibility [pelargir]
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![Build Status](https://travis-ci.com/pelargir/auto-session-timeout.svg?branch=master)](https://travis-ci.com/pelargir/auto-session-timeout)
1
+ ![Build Status](https://github.com/pelargir/auto-session-timeout/actions/workflows/minitest.yml/badge.svg)
2
2
 
3
3
  # Auto::Session::Timeout
4
4
 
@@ -1,7 +1,7 @@
1
1
  module Auto
2
2
  module Session
3
3
  module Timeout
4
- VERSION = "0.9.9"
4
+ VERSION = "1.0"
5
5
  end
6
6
  end
7
7
  end
@@ -26,7 +26,7 @@ module AutoSessionTimeout
26
26
  end
27
27
 
28
28
  def render_session_status
29
- response.headers["Etag"] = "" # clear etags to prevent caching
29
+ response.headers["Etag"] = nil # clear etags to prevent caching
30
30
  render plain: !!current_user, status: 200
31
31
  end
32
32
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auto-session-timeout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.9
4
+ version: '1.0'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Bass
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2023-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
120
  - !ruby/object:Gem::Version
121
121
  version: '0'
122
122
  requirements: []
123
- rubygems_version: 3.1.6
123
+ rubygems_version: 3.3.26
124
124
  signing_key:
125
125
  specification_version: 4
126
126
  summary: Provides automatic session timeout in a Rails application.