rack-oauth-wrap 0.5.1 → 0.5.2
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/lib/rack/auth/wrap.rb +2 -2
- metadata +1 -1
data/lib/rack/auth/wrap.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require 'rack/auth/abstract/handler'
|
|
2
2
|
require 'rack/auth/abstract/request'
|
|
3
|
-
require '
|
|
3
|
+
require 'simplewebtoken'
|
|
4
4
|
|
|
5
5
|
module Rack
|
|
6
6
|
module Auth
|
|
@@ -15,7 +15,7 @@ module Rack
|
|
|
15
15
|
# See also: SimpleWebToken::SimpleWebTokenHandler
|
|
16
16
|
class WRAP < AbstractHandler
|
|
17
17
|
# Middleware Gem Versioning
|
|
18
|
-
VERSION = "0.5.
|
|
18
|
+
VERSION = "0.5.2"
|
|
19
19
|
|
|
20
20
|
# Creates a new instance of Rack::Auth::WRAP, the opts can be used
|
|
21
21
|
# as the following.
|