rack-oauth-wrap 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- 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.
|