tpitale-rack-oauth2-server 2.2.1 → 2.2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/rack/oauth2/models/access_token.rb +2 -2
- data/lib/rack/oauth2/models/auth_request.rb +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.1
|
1
|
+
2.2.1.1
|
@@ -15,7 +15,7 @@ module Rack
|
|
15
15
|
|
16
16
|
attributes = {
|
17
17
|
:code => Server.secure_random,
|
18
|
-
:scope => scope,
|
18
|
+
:scope => scope.join(' '),
|
19
19
|
:client => client
|
20
20
|
}
|
21
21
|
|
@@ -41,7 +41,7 @@ module Rack
|
|
41
41
|
attributes = {
|
42
42
|
:code => Server.secure_random,
|
43
43
|
:identity => identity,
|
44
|
-
:scope => scope,
|
44
|
+
:scope => scope.join(' '),
|
45
45
|
:client_id => client.id
|
46
46
|
}
|
47
47
|
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: tpitale-rack-oauth2-server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.2.1
|
5
|
+
version: 2.2.1.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Assaf Arkin
|
@@ -115,7 +115,7 @@ licenses:
|
|
115
115
|
post_install_message: To get started, run the command oauth2-server
|
116
116
|
rdoc_options:
|
117
117
|
- --title
|
118
|
-
- tpitale-rack-oauth2-server 2.2.1
|
118
|
+
- tpitale-rack-oauth2-server 2.2.1.1
|
119
119
|
- --main
|
120
120
|
- README.rdoc
|
121
121
|
- --webcvs
|