soar_authentication 0.1.0 → 0.1.1

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: 12c67c24278861500e48742c679508e436c860c2
4
- data.tar.gz: 42ae811fb32ceca222a0fb9f554e5672246f0f05
3
+ metadata.gz: 2626831f860d04c09514a483a837c590e98b1469
4
+ data.tar.gz: d495c02a807401ed4161c272d7705b7bbe6f3eb6
5
5
  SHA512:
6
- metadata.gz: 78066f6b0da4a1c98166f438f152d5ccedadb2a5d2373160c944027e8586b5c4738bcdff28ec8cf92ca8bfec1457a927e7ebe1368d7602e8a4e987eac9357bbc
7
- data.tar.gz: 92e25831602484a429bb7aeb9e6a8571aba78fcdf11d759b8c71f8c2865c7e3effbb53f1b12e32add3a95d5363537554aef76934ed1110ca7c72b47e8b6d3e64
6
+ metadata.gz: 1b8ec5853def0a2e4f65adcd94e9f73c6f8842a281538657bc055ae49343610c2b9922159a989ea834bc284e4d595b402d95989c094a841270826974ddab288f
7
+ data.tar.gz: 70a64ba7c2aaf20844409935510bb86248f901788a7151bf9e158265bac34d4133974a69e2670d2e192094f7f90a7a8536afe77c1eeed92e35b33015f9873283
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # SoarAuthentication
2
2
 
3
- This middleware will refuse unauthenticated requests. Refusal means a 401 response code with a message indicating authentication failure. Requests are unauthenticaed if request.session['user'] is not set. Your authentication strategy can authenticate the request by settions request.session['user']. If ENV['RACK_ENV'] == 'development', authentication will always be approved. The SoarAuthentication::Authentication class can interpret a request, tell if its authenticated and which identifier was used. If ENV['RACK_ENV'] == 'development' asking for the identifier will yield 'developer'
3
+ This middleware will refuse unauthenticated requests. Refusal means a 401 response code with a message indicating authentication failure. Requests are unauthenticaed if request.session['user'] is not set. Your authentication strategy can authenticate the request by setting request.session['user']. If ENV['RACK_ENV'] == 'development', authentication will always be approved. The SoarAuthentication::Authentication class can interpret a request, tell if its authenticated and which identifier was used. If ENV['RACK_ENV'] == 'development' asking for the identifier will yield 'developer'
4
4
 
5
5
  ## Installation
6
6
 
@@ -1,3 +1,3 @@
1
1
  module SoarAuthentication
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soar_authentication
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ernst Van Graan