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 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
 
@@ -24,7 +24,7 @@ module Rack
24
24
  attributes = {
25
25
  :code => Server.secure_random,
26
26
  :client_id => client.id,
27
- :scope => scope,
27
+ :scope => scope.join(' '),
28
28
  :redirect_uri => (client.redirect_uri || redirect_uri),
29
29
  :response_type => response_type,
30
30
  :state => state
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