doorkeeper-grants_assertion 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7ff51a2816fe5e939a96a6dc6f20f5d277b5f3a0
4
- data.tar.gz: 06f8b660742a4ed96ee2ef41a791a12d16290c9a
2
+ SHA256:
3
+ metadata.gz: a62dff6f7251f6a5e2d951081c4d73c94690fc8fcb22a997a72cc4a97dc16f6f
4
+ data.tar.gz: 86f0326a66c5978909a60a6447d00cc591c6f0d2675db48cd6e5d38477008206
5
5
  SHA512:
6
- metadata.gz: a78e1f07804f3f25ce1eed17dd6ee8bae657678dc7b6a3dd8e0f9c90de62fea659bffa6047910965083ec796091f4c83122f8cb874e9f4346aed546d093ae759
7
- data.tar.gz: 9d8822d3cb8c532664800adb818c69a1c2f5e6279ab2554a7d91ec14c2665c7f7af85f1d9087238684cd731e313f3e11849ef701acf2ef53bc25528972ec2225
6
+ metadata.gz: e043ed6070b06946baad1db6a701500045c92990e2e307e82e0c01bca4057d60d5fd3f8edc0e1ce7fd44fbff43a5bc7b8f81cf88bc051f2c08fd7842c1d0d093
7
+ data.tar.gz: 0f1b9eeb4c4d948cf6aad2772ada4078299dca67b7ab826558a1aa2f901b5183abe1423fedcf6577660303e7fd2dbec3bcb74a2cb42e5fb23ad76d338c4f41eb
data/.gitignore CHANGED
@@ -11,3 +11,4 @@ Gemfile.lock
11
11
  vendor/bundle/
12
12
  gemfiles/vendor/bundle/
13
13
  .DS_Store
14
+ gemfiles/*.lock
@@ -1,16 +1,21 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 2.2.6
5
- - 2.3.3
6
4
  - 2.4
7
5
  - 2.5
6
+ - 2.6
7
+ - 2.7
8
8
 
9
9
  gemfile:
10
- - gemfiles/rails_4_2.gemfile
11
- - gemfiles/rails_5_0.gemfile
10
+ - gemfiles/rails_5_2.gemfile
11
+ - gemfiles/rails_6_0.gemfile
12
12
  - gemfiles/rails_latest_and_doorkeeper_latest.gemfile
13
13
 
14
14
  matrix:
15
- allowed_failures:
15
+ exclude:
16
+ - gemfile: gemfiles/rails_6_0.gemfile
17
+ rvm: 2.4
18
+ - gemfile: gemfiles/rails_latest_and_doorkeeper_latest.gemfile
19
+ rvm: 2.4
20
+ allow_failures:
16
21
  - gemfile: gemfiles/rails_latest_and_doorkeeper_latest.gemfile
data/Gemfile CHANGED
@@ -2,9 +2,8 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- # Define Rails version
6
- gem "doorkeeper", "~> 4.2.0"
7
- gem "rails", "~> 4.2.0"
5
+ gem "doorkeeper", "~> 5.2"
6
+ gem "rails", "~> 6.0"
8
7
  gem "sqlite3"
9
8
 
10
9
  gemspec
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Doorkeeper - Assertion Grant Extension
2
2
 
3
3
  [![Travis CI](https://img.shields.io/travis/doorkeeper-gem/doorkeeper-grants_assertion/master.svg)](https://travis-ci.org/doorkeeper-gem/doorkeeper-grants_assertion)
4
+ [![Gem Version](https://badge.fury.io/rb/doorkeeper-grants_assertion.svg)](https://rubygems.org/gems/doorkeeper-grants_assertion)
4
5
 
5
6
  Assertion grant extension for Doorkeeper. Born from:
6
7
  https://github.com/doorkeeper-gem/doorkeeper/pull/249
@@ -96,9 +97,10 @@ If you want to ensure that resource owners can only receive access tokens scoped
96
97
  Doorkeeper.configure do
97
98
  resource_owner_from_assertion do
98
99
  Doorkeeper::Application.find_by!(uid: params[:client_id]) #will raise an exception if not found
99
- facebook = URI.parse('https://graph.facebook.com/me?access_token=' +
100
- params[:assertion])
101
- ....continue with authentication lookup....
100
+ facebook = URI.parse('https://graph.facebook.com/me?access_token=' + params[:assertion])
101
+ # ....continue with authentication lookup....
102
+ end
103
+ end
102
104
  ```
103
105
  More complete examples, also for other providers may be found in the [wiki](https://github.com/doorkeeper-gem/doorkeeper-grants_assertion/wiki).
104
106
  ___
@@ -107,11 +109,11 @@ IETF standard: http://tools.ietf.org/html/rfc7521
107
109
 
108
110
  ## Supported versions
109
111
 
110
- Assertion grant extension for Doorkeeper is tested with Rails 4.2 and 5.0.
112
+ Assertion grant extension for Doorkeeper is tested with Rails 4.2, 5.x and 6.0.
111
113
 
112
114
  ## Contributing
113
115
 
114
- After adding the feature and funtionality, please run
116
+ After adding the feature and functionality, please run
115
117
  ```
116
118
  bundle exec appraisal install
117
119
  ```
@@ -9,8 +9,8 @@ require "doorkeeper/grants_assertion/version"
9
9
  Gem::Specification.new do |s|
10
10
  s.name = 'doorkeeper-grants_assertion'
11
11
  s.version = Doorkeeper::GrantsAssertion::VERSION
12
- s.authors = ['Tute Costa']
13
- s.email = ['tutecosta@gmail.com']
12
+ s.authors = ['Tute Costa', 'Nikita Bulai']
13
+ s.email = ['tutecosta@gmail.com', 'bulajnikita@gmail.com']
14
14
  s.homepage = "https://github.com/doorkeeper-gem/doorkeeper-grants-assertion"
15
15
  s.summary = "Assertion grant extension for Doorkeeper."
16
16
  s.description = "Assertion grant extension for Doorkeeper."
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
  s.test_files = ` /*`.split("\n")
23
23
  s.require_paths = ["lib"]
24
24
 
25
- s.add_dependency "railties", ">= 3.1"
25
+ s.add_dependency "railties", ">= 5.0"
26
26
  s.add_dependency "doorkeeper", ">= 4.0"
27
27
 
28
28
  s.add_development_dependency "rspec-rails", ">= 2.11.4"
@@ -36,6 +36,5 @@ Gem::Specification.new do |s|
36
36
  s.add_development_dependency "omniauth-facebook", "~> 4.0.0"
37
37
  s.add_development_dependency "omniauth-google-oauth2", "~> 0.5.3"
38
38
  s.add_development_dependency "webmock", "~> 3.3.0"
39
- s.add_development_dependency "devise", "~> 4.4.3"
40
-
39
+ s.add_development_dependency "devise", ">= 4.4.3"
41
40
  end
@@ -2,8 +2,8 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 4.2.0"
6
- gem "doorkeeper", "~> 4.2.0"
5
+ gem "rails", "~> 5.2.0"
6
+ gem "doorkeeper", "~> 5.2.0"
7
7
  gem "sqlite3"
8
8
 
9
9
  gemspec path: "../"
@@ -2,8 +2,8 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "rails", "~> 5.0.0"
6
- gem "doorkeeper", "~> 4.2.0"
5
+ gem "rails", "~> 6.0.0"
6
+ gem "doorkeeper", "~> 5.2.0"
7
7
  gem "sqlite3"
8
8
 
9
9
  gemspec path: "../"
@@ -24,7 +24,7 @@ end
24
24
 
25
25
  module Doorkeeper
26
26
  class Config
27
- option :resource_owner_from_assertion, default: (lambda do |routes|
27
+ option :resource_owner_from_assertion, default: (lambda do |_routes|
28
28
  warn(I18n.t("doorkeeper.errors.messages.assertion_flow_not_configured"))
29
29
  nil
30
30
  end)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Doorkeeper
4
4
  module GrantsAssertion
5
- VERSION = "0.2.0"
5
+ VERSION = "0.3.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doorkeeper-grants_assertion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tute Costa
8
+ - Nikita Bulai
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2018-07-30 00:00:00.000000000 Z
12
+ date: 2020-05-29 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: railties
@@ -16,14 +17,14 @@ dependencies:
16
17
  requirements:
17
18
  - - ">="
18
19
  - !ruby/object:Gem::Version
19
- version: '3.1'
20
+ version: '5.0'
20
21
  type: :runtime
21
22
  prerelease: false
22
23
  version_requirements: !ruby/object:Gem::Requirement
23
24
  requirements:
24
25
  - - ">="
25
26
  - !ruby/object:Gem::Version
26
- version: '3.1'
27
+ version: '5.0'
27
28
  - !ruby/object:Gem::Dependency
28
29
  name: doorkeeper
29
30
  requirement: !ruby/object:Gem::Requirement
@@ -196,38 +197,35 @@ dependencies:
196
197
  name: devise
197
198
  requirement: !ruby/object:Gem::Requirement
198
199
  requirements:
199
- - - "~>"
200
+ - - ">="
200
201
  - !ruby/object:Gem::Version
201
202
  version: 4.4.3
202
203
  type: :development
203
204
  prerelease: false
204
205
  version_requirements: !ruby/object:Gem::Requirement
205
206
  requirements:
206
- - - "~>"
207
+ - - ">="
207
208
  - !ruby/object:Gem::Version
208
209
  version: 4.4.3
209
210
  description: Assertion grant extension for Doorkeeper.
210
211
  email:
211
212
  - tutecosta@gmail.com
213
+ - bulajnikita@gmail.com
212
214
  executables: []
213
215
  extensions: []
214
216
  extra_rdoc_files: []
215
217
  files:
216
218
  - ".gitignore"
217
219
  - ".travis.yml"
218
- - Appraisals
219
220
  - Gemfile
220
221
  - MIT-LICENSE
221
222
  - README.md
222
223
  - Rakefile
223
224
  - config/locales/en.yml
224
225
  - doorkeeper-grants_assertion.gemspec
225
- - gemfiles/rails_4_2.gemfile
226
- - gemfiles/rails_4_2.gemfile.lock
227
- - gemfiles/rails_5_0.gemfile
228
- - gemfiles/rails_5_0.gemfile.lock
226
+ - gemfiles/rails_5_2.gemfile
227
+ - gemfiles/rails_6_0.gemfile
229
228
  - gemfiles/rails_latest_and_doorkeeper_latest.gemfile
230
- - gemfiles/rails_latest_and_doorkeeper_latest.gemfile.lock
231
229
  - lib/doorkeeper/grants_assertion.rb
232
230
  - lib/doorkeeper/grants_assertion/devise/omniauth.rb
233
231
  - lib/doorkeeper/grants_assertion/omniauth.rb
@@ -253,8 +251,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
253
251
  - !ruby/object:Gem::Version
254
252
  version: '0'
255
253
  requirements: []
256
- rubyforge_project:
257
- rubygems_version: 2.5.2.3
254
+ rubygems_version: 3.0.6
258
255
  signing_key:
259
256
  specification_version: 4
260
257
  summary: Assertion grant extension for Doorkeeper.
data/Appraisals DELETED
@@ -1,15 +0,0 @@
1
- appraise 'rails-4-2' do
2
- gem 'rails', '~> 4.2.0'
3
- gem 'doorkeeper', '~> 4.2.0'
4
- end
5
-
6
- appraise 'rails-5-0' do
7
- gem 'rails', '~> 5.0.0'
8
- gem 'doorkeeper', '~> 4.2.0'
9
- end
10
-
11
- appraise 'rails-latest-and-doorkeeper-latest' do
12
- gem 'rails', github: 'rails/rails'
13
- gem 'arel', github: 'rails/arel'
14
- gem 'doorkeeper', github: 'doorkeeper-gem/doorkeeper'
15
- end
@@ -1,222 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- doorkeeper-grants_assertion (0.2.0)
5
- doorkeeper (>= 4.0)
6
- railties (>= 3.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.2.10)
12
- actionpack (= 4.2.10)
13
- actionview (= 4.2.10)
14
- activejob (= 4.2.10)
15
- mail (~> 2.5, >= 2.5.4)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
- actionpack (4.2.10)
18
- actionview (= 4.2.10)
19
- activesupport (= 4.2.10)
20
- rack (~> 1.6)
21
- rack-test (~> 0.6.2)
22
- rails-dom-testing (~> 1.0, >= 1.0.5)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- actionview (4.2.10)
25
- activesupport (= 4.2.10)
26
- builder (~> 3.1)
27
- erubis (~> 2.7.0)
28
- rails-dom-testing (~> 1.0, >= 1.0.5)
29
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
30
- activejob (4.2.10)
31
- activesupport (= 4.2.10)
32
- globalid (>= 0.3.0)
33
- activemodel (4.2.10)
34
- activesupport (= 4.2.10)
35
- builder (~> 3.1)
36
- activerecord (4.2.10)
37
- activemodel (= 4.2.10)
38
- activesupport (= 4.2.10)
39
- arel (~> 6.0)
40
- activesupport (4.2.10)
41
- i18n (~> 0.7)
42
- minitest (~> 5.1)
43
- thread_safe (~> 0.3, >= 0.3.4)
44
- tzinfo (~> 1.1)
45
- addressable (2.5.2)
46
- public_suffix (>= 2.0.2, < 4.0)
47
- appraisal (2.2.0)
48
- bundler
49
- rake
50
- thor (>= 0.14.0)
51
- arel (6.0.4)
52
- bcrypt (3.1.12)
53
- builder (3.2.3)
54
- capybara (2.18.0)
55
- addressable
56
- mini_mime (>= 0.1.3)
57
- nokogiri (>= 1.3.3)
58
- rack (>= 1.0.0)
59
- rack-test (>= 0.5.4)
60
- xpath (>= 2.0, < 4.0)
61
- coderay (1.1.2)
62
- concurrent-ruby (1.0.5)
63
- crack (0.4.3)
64
- safe_yaml (~> 1.0.0)
65
- crass (1.0.2)
66
- database_cleaner (1.6.2)
67
- devise (4.4.3)
68
- bcrypt (~> 3.0)
69
- orm_adapter (~> 0.1)
70
- railties (>= 4.1.0, < 6.0)
71
- responders
72
- warden (~> 1.2.3)
73
- diff-lcs (1.3)
74
- doorkeeper (4.2.6)
75
- railties (>= 4.2)
76
- erubis (2.7.0)
77
- factory_bot (4.8.2)
78
- activesupport (>= 3.0.0)
79
- faraday (0.12.2)
80
- multipart-post (>= 1.2, < 3)
81
- generator_spec (0.9.4)
82
- activesupport (>= 3.0.0)
83
- railties (>= 3.0.0)
84
- globalid (0.4.0)
85
- activesupport (>= 4.2.0)
86
- hashdiff (0.3.7)
87
- hashie (3.5.7)
88
- i18n (0.8.6)
89
- jwt (1.5.6)
90
- loofah (2.1.1)
91
- crass (~> 1.0.2)
92
- nokogiri (>= 1.5.9)
93
- mail (2.6.6)
94
- mime-types (>= 1.16, < 4)
95
- method_source (0.9.0)
96
- mime-types (3.1)
97
- mime-types-data (~> 3.2015)
98
- mime-types-data (3.2016.0521)
99
- mini_mime (1.0.0)
100
- mini_portile2 (2.3.0)
101
- minitest (5.10.3)
102
- multi_json (1.13.1)
103
- multi_xml (0.6.0)
104
- multipart-post (2.0.0)
105
- nokogiri (1.8.1)
106
- mini_portile2 (~> 2.3.0)
107
- oauth2 (1.4.0)
108
- faraday (>= 0.8, < 0.13)
109
- jwt (~> 1.0)
110
- multi_json (~> 1.3)
111
- multi_xml (~> 0.5)
112
- rack (>= 1.2, < 3)
113
- omniauth (1.8.1)
114
- hashie (>= 3.4.6, < 3.6.0)
115
- rack (>= 1.6.2, < 3)
116
- omniauth-facebook (4.0.0)
117
- omniauth-oauth2 (~> 1.2)
118
- omniauth-google-oauth2 (0.5.3)
119
- jwt (>= 1.5)
120
- omniauth (>= 1.1.1)
121
- omniauth-oauth2 (>= 1.5)
122
- omniauth-oauth2 (1.5.0)
123
- oauth2 (~> 1.1)
124
- omniauth (~> 1.2)
125
- orm_adapter (0.5.0)
126
- pry (0.11.3)
127
- coderay (~> 1.1.0)
128
- method_source (~> 0.9.0)
129
- public_suffix (3.0.2)
130
- rack (1.6.8)
131
- rack-test (0.6.3)
132
- rack (>= 1.0)
133
- rails (4.2.10)
134
- actionmailer (= 4.2.10)
135
- actionpack (= 4.2.10)
136
- actionview (= 4.2.10)
137
- activejob (= 4.2.10)
138
- activemodel (= 4.2.10)
139
- activerecord (= 4.2.10)
140
- activesupport (= 4.2.10)
141
- bundler (>= 1.3.0, < 2.0)
142
- railties (= 4.2.10)
143
- sprockets-rails
144
- rails-deprecated_sanitizer (1.0.3)
145
- activesupport (>= 4.2.0.alpha)
146
- rails-dom-testing (1.0.8)
147
- activesupport (>= 4.2.0.beta, < 5.0)
148
- nokogiri (~> 1.6)
149
- rails-deprecated_sanitizer (>= 1.0.1)
150
- rails-html-sanitizer (1.0.3)
151
- loofah (~> 2.0)
152
- railties (4.2.10)
153
- actionpack (= 4.2.10)
154
- activesupport (= 4.2.10)
155
- rake (>= 0.8.7)
156
- thor (>= 0.18.1, < 2.0)
157
- rake (12.1.0)
158
- responders (2.4.0)
159
- actionpack (>= 4.2.0, < 5.3)
160
- railties (>= 4.2.0, < 5.3)
161
- rspec-core (3.6.0)
162
- rspec-support (~> 3.6.0)
163
- rspec-expectations (3.6.0)
164
- diff-lcs (>= 1.2.0, < 2.0)
165
- rspec-support (~> 3.6.0)
166
- rspec-mocks (3.6.0)
167
- diff-lcs (>= 1.2.0, < 2.0)
168
- rspec-support (~> 3.6.0)
169
- rspec-rails (3.6.1)
170
- actionpack (>= 3.0)
171
- activesupport (>= 3.0)
172
- railties (>= 3.0)
173
- rspec-core (~> 3.6.0)
174
- rspec-expectations (~> 3.6.0)
175
- rspec-mocks (~> 3.6.0)
176
- rspec-support (~> 3.6.0)
177
- rspec-support (3.6.0)
178
- safe_yaml (1.0.4)
179
- sprockets (3.7.1)
180
- concurrent-ruby (~> 1.0)
181
- rack (> 1, < 3)
182
- sprockets-rails (3.2.1)
183
- actionpack (>= 4.0)
184
- activesupport (>= 4.0)
185
- sprockets (>= 3.0.0)
186
- sqlite3 (1.3.13)
187
- thor (0.20.0)
188
- thread_safe (0.3.6)
189
- tzinfo (1.2.3)
190
- thread_safe (~> 0.1)
191
- warden (1.2.7)
192
- rack (>= 1.0)
193
- webmock (3.3.0)
194
- addressable (>= 2.3.6)
195
- crack (>= 0.3.2)
196
- hashdiff
197
- xpath (3.0.0)
198
- nokogiri (~> 1.8)
199
-
200
- PLATFORMS
201
- ruby
202
-
203
- DEPENDENCIES
204
- appraisal (~> 2.2.0)
205
- capybara (~> 2.18.0)
206
- database_cleaner (~> 1.6.2)
207
- devise (~> 4.4.3)
208
- doorkeeper (~> 4.2.0)
209
- doorkeeper-grants_assertion!
210
- factory_bot (~> 4.8.2)
211
- generator_spec (~> 0.9.4)
212
- omniauth-facebook (~> 4.0.0)
213
- omniauth-google-oauth2 (~> 0.5.3)
214
- omniauth-oauth2 (~> 1.5.0)
215
- pry (>= 0.11.3)
216
- rails (~> 4.2.0)
217
- rspec-rails (>= 2.11.4)
218
- sqlite3
219
- webmock (~> 3.3.0)
220
-
221
- BUNDLED WITH
222
- 1.16.2
@@ -1,228 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- doorkeeper-grants_assertion (0.2.0)
5
- doorkeeper (>= 4.0)
6
- railties (>= 3.1)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.0.0.1)
12
- actionpack (= 5.0.0.1)
13
- nio4r (~> 1.2)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.0.1)
16
- actionpack (= 5.0.0.1)
17
- actionview (= 5.0.0.1)
18
- activejob (= 5.0.0.1)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.0.0.1)
22
- actionview (= 5.0.0.1)
23
- activesupport (= 5.0.0.1)
24
- rack (~> 2.0)
25
- rack-test (~> 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.0.0.1)
29
- activesupport (= 5.0.0.1)
30
- builder (~> 3.1)
31
- erubis (~> 2.7.0)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
- activejob (5.0.0.1)
35
- activesupport (= 5.0.0.1)
36
- globalid (>= 0.3.6)
37
- activemodel (5.0.0.1)
38
- activesupport (= 5.0.0.1)
39
- activerecord (5.0.0.1)
40
- activemodel (= 5.0.0.1)
41
- activesupport (= 5.0.0.1)
42
- arel (~> 7.0)
43
- activesupport (5.0.0.1)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- addressable (2.5.2)
49
- public_suffix (>= 2.0.2, < 4.0)
50
- appraisal (2.2.0)
51
- bundler
52
- rake
53
- thor (>= 0.14.0)
54
- arel (7.1.4)
55
- bcrypt (3.1.12)
56
- builder (3.2.3)
57
- capybara (2.18.0)
58
- addressable
59
- mini_mime (>= 0.1.3)
60
- nokogiri (>= 1.3.3)
61
- rack (>= 1.0.0)
62
- rack-test (>= 0.5.4)
63
- xpath (>= 2.0, < 4.0)
64
- coderay (1.1.2)
65
- concurrent-ruby (1.0.5)
66
- crack (0.4.3)
67
- safe_yaml (~> 1.0.0)
68
- crass (1.0.2)
69
- database_cleaner (1.6.2)
70
- devise (4.4.3)
71
- bcrypt (~> 3.0)
72
- orm_adapter (~> 0.1)
73
- railties (>= 4.1.0, < 6.0)
74
- responders
75
- warden (~> 1.2.3)
76
- diff-lcs (1.3)
77
- doorkeeper (4.2.6)
78
- railties (>= 4.2)
79
- erubis (2.7.0)
80
- factory_bot (4.8.2)
81
- activesupport (>= 3.0.0)
82
- faraday (0.12.2)
83
- multipart-post (>= 1.2, < 3)
84
- generator_spec (0.9.4)
85
- activesupport (>= 3.0.0)
86
- railties (>= 3.0.0)
87
- globalid (0.4.0)
88
- activesupport (>= 4.2.0)
89
- hashdiff (0.3.7)
90
- hashie (3.5.7)
91
- i18n (0.8.6)
92
- jwt (1.5.6)
93
- loofah (2.1.1)
94
- crass (~> 1.0.2)
95
- nokogiri (>= 1.5.9)
96
- mail (2.6.6)
97
- mime-types (>= 1.16, < 4)
98
- method_source (0.9.0)
99
- mime-types (3.1)
100
- mime-types-data (~> 3.2015)
101
- mime-types-data (3.2016.0521)
102
- mini_mime (1.0.0)
103
- mini_portile2 (2.3.0)
104
- minitest (5.10.3)
105
- multi_json (1.13.1)
106
- multi_xml (0.6.0)
107
- multipart-post (2.0.0)
108
- nio4r (1.2.1)
109
- nokogiri (1.8.1)
110
- mini_portile2 (~> 2.3.0)
111
- oauth2 (1.4.0)
112
- faraday (>= 0.8, < 0.13)
113
- jwt (~> 1.0)
114
- multi_json (~> 1.3)
115
- multi_xml (~> 0.5)
116
- rack (>= 1.2, < 3)
117
- omniauth (1.8.1)
118
- hashie (>= 3.4.6, < 3.6.0)
119
- rack (>= 1.6.2, < 3)
120
- omniauth-facebook (4.0.0)
121
- omniauth-oauth2 (~> 1.2)
122
- omniauth-google-oauth2 (0.5.3)
123
- jwt (>= 1.5)
124
- omniauth (>= 1.1.1)
125
- omniauth-oauth2 (>= 1.5)
126
- omniauth-oauth2 (1.5.0)
127
- oauth2 (~> 1.1)
128
- omniauth (~> 1.2)
129
- orm_adapter (0.5.0)
130
- pry (0.11.3)
131
- coderay (~> 1.1.0)
132
- method_source (~> 0.9.0)
133
- public_suffix (3.0.2)
134
- rack (2.0.3)
135
- rack-test (0.6.3)
136
- rack (>= 1.0)
137
- rails (5.0.0.1)
138
- actioncable (= 5.0.0.1)
139
- actionmailer (= 5.0.0.1)
140
- actionpack (= 5.0.0.1)
141
- actionview (= 5.0.0.1)
142
- activejob (= 5.0.0.1)
143
- activemodel (= 5.0.0.1)
144
- activerecord (= 5.0.0.1)
145
- activesupport (= 5.0.0.1)
146
- bundler (>= 1.3.0, < 2.0)
147
- railties (= 5.0.0.1)
148
- sprockets-rails (>= 2.0.0)
149
- rails-dom-testing (2.0.3)
150
- activesupport (>= 4.2.0)
151
- nokogiri (>= 1.6)
152
- rails-html-sanitizer (1.0.3)
153
- loofah (~> 2.0)
154
- railties (5.0.0.1)
155
- actionpack (= 5.0.0.1)
156
- activesupport (= 5.0.0.1)
157
- method_source
158
- rake (>= 0.8.7)
159
- thor (>= 0.18.1, < 2.0)
160
- rake (12.1.0)
161
- responders (2.4.0)
162
- actionpack (>= 4.2.0, < 5.3)
163
- railties (>= 4.2.0, < 5.3)
164
- rspec-core (3.6.0)
165
- rspec-support (~> 3.6.0)
166
- rspec-expectations (3.6.0)
167
- diff-lcs (>= 1.2.0, < 2.0)
168
- rspec-support (~> 3.6.0)
169
- rspec-mocks (3.6.0)
170
- diff-lcs (>= 1.2.0, < 2.0)
171
- rspec-support (~> 3.6.0)
172
- rspec-rails (3.6.1)
173
- actionpack (>= 3.0)
174
- activesupport (>= 3.0)
175
- railties (>= 3.0)
176
- rspec-core (~> 3.6.0)
177
- rspec-expectations (~> 3.6.0)
178
- rspec-mocks (~> 3.6.0)
179
- rspec-support (~> 3.6.0)
180
- rspec-support (3.6.0)
181
- safe_yaml (1.0.4)
182
- sprockets (3.7.1)
183
- concurrent-ruby (~> 1.0)
184
- rack (> 1, < 3)
185
- sprockets-rails (3.2.1)
186
- actionpack (>= 4.0)
187
- activesupport (>= 4.0)
188
- sprockets (>= 3.0.0)
189
- sqlite3 (1.3.13)
190
- thor (0.20.0)
191
- thread_safe (0.3.6)
192
- tzinfo (1.2.3)
193
- thread_safe (~> 0.1)
194
- warden (1.2.7)
195
- rack (>= 1.0)
196
- webmock (3.3.0)
197
- addressable (>= 2.3.6)
198
- crack (>= 0.3.2)
199
- hashdiff
200
- websocket-driver (0.6.5)
201
- websocket-extensions (>= 0.1.0)
202
- websocket-extensions (0.1.2)
203
- xpath (3.0.0)
204
- nokogiri (~> 1.8)
205
-
206
- PLATFORMS
207
- ruby
208
-
209
- DEPENDENCIES
210
- appraisal (~> 2.2.0)
211
- capybara (~> 2.18.0)
212
- database_cleaner (~> 1.6.2)
213
- devise (~> 4.4.3)
214
- doorkeeper (~> 4.2.0)
215
- doorkeeper-grants_assertion!
216
- factory_bot (~> 4.8.2)
217
- generator_spec (~> 0.9.4)
218
- omniauth-facebook (~> 4.0.0)
219
- omniauth-google-oauth2 (~> 0.5.3)
220
- omniauth-oauth2 (~> 1.5.0)
221
- pry (>= 0.11.3)
222
- rails (~> 5.0.0)
223
- rspec-rails (>= 2.11.4)
224
- sqlite3
225
- webmock (~> 3.3.0)
226
-
227
- BUNDLED WITH
228
- 1.16.2
@@ -1,248 +0,0 @@
1
- GIT
2
- remote: git://github.com/doorkeeper-gem/doorkeeper.git
3
- revision: c586ab379ed8cbac7fa27fd89da9a42441d3d962
4
- specs:
5
- doorkeeper (4.2.6)
6
- railties (>= 4.2)
7
-
8
- GIT
9
- remote: git://github.com/rails/arel.git
10
- revision: 5cc7e774bb4d2190236cdbf46d66c89507ac6933
11
- specs:
12
- arel (9.0.0.alpha)
13
-
14
- GIT
15
- remote: git://github.com/rails/rails.git
16
- revision: a92e4bfff31dd862e842bd68ddd78f3db720b3a4
17
- specs:
18
- actioncable (5.2.0.alpha)
19
- actionpack (= 5.2.0.alpha)
20
- nio4r (~> 2.0)
21
- websocket-driver (~> 0.6.1)
22
- actionmailer (5.2.0.alpha)
23
- actionpack (= 5.2.0.alpha)
24
- actionview (= 5.2.0.alpha)
25
- activejob (= 5.2.0.alpha)
26
- mail (~> 2.5, >= 2.5.4)
27
- rails-dom-testing (~> 2.0)
28
- actionpack (5.2.0.alpha)
29
- actionview (= 5.2.0.alpha)
30
- activesupport (= 5.2.0.alpha)
31
- rack (~> 2.0)
32
- rack-test (>= 0.6.3)
33
- rails-dom-testing (~> 2.0)
34
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
35
- actionview (5.2.0.alpha)
36
- activesupport (= 5.2.0.alpha)
37
- builder (~> 3.1)
38
- erubi (~> 1.4)
39
- rails-dom-testing (~> 2.0)
40
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
41
- activejob (5.2.0.alpha)
42
- activesupport (= 5.2.0.alpha)
43
- globalid (>= 0.3.6)
44
- activemodel (5.2.0.alpha)
45
- activesupport (= 5.2.0.alpha)
46
- activerecord (5.2.0.alpha)
47
- activemodel (= 5.2.0.alpha)
48
- activesupport (= 5.2.0.alpha)
49
- arel (= 9.0.0.alpha)
50
- activestorage (5.2.0.alpha)
51
- actionpack (= 5.2.0.alpha)
52
- activerecord (= 5.2.0.alpha)
53
- activesupport (5.2.0.alpha)
54
- concurrent-ruby (~> 1.0, >= 1.0.2)
55
- i18n (~> 0.7)
56
- minitest (~> 5.1)
57
- tzinfo (~> 1.1)
58
- rails (5.2.0.alpha)
59
- actioncable (= 5.2.0.alpha)
60
- actionmailer (= 5.2.0.alpha)
61
- actionpack (= 5.2.0.alpha)
62
- actionview (= 5.2.0.alpha)
63
- activejob (= 5.2.0.alpha)
64
- activemodel (= 5.2.0.alpha)
65
- activerecord (= 5.2.0.alpha)
66
- activestorage (= 5.2.0.alpha)
67
- activesupport (= 5.2.0.alpha)
68
- bundler (>= 1.3.0)
69
- railties (= 5.2.0.alpha)
70
- sprockets-rails (>= 2.0.0)
71
- railties (5.2.0.alpha)
72
- actionpack (= 5.2.0.alpha)
73
- activesupport (= 5.2.0.alpha)
74
- method_source
75
- rake (>= 0.8.7)
76
- thor (>= 0.18.1, < 2.0)
77
-
78
- PATH
79
- remote: ..
80
- specs:
81
- doorkeeper-grants_assertion (0.2.0)
82
- doorkeeper (>= 4.0)
83
- railties (>= 3.1)
84
-
85
- GEM
86
- remote: https://rubygems.org/
87
- specs:
88
- addressable (2.5.2)
89
- public_suffix (>= 2.0.2, < 4.0)
90
- appraisal (2.2.0)
91
- bundler
92
- rake
93
- thor (>= 0.14.0)
94
- bcrypt (3.1.12)
95
- builder (3.2.3)
96
- capybara (2.18.0)
97
- addressable
98
- mini_mime (>= 0.1.3)
99
- nokogiri (>= 1.3.3)
100
- rack (>= 1.0.0)
101
- rack-test (>= 0.5.4)
102
- xpath (>= 2.0, < 4.0)
103
- coderay (1.1.2)
104
- concurrent-ruby (1.0.5)
105
- crack (0.4.3)
106
- safe_yaml (~> 1.0.0)
107
- crass (1.0.2)
108
- database_cleaner (1.6.2)
109
- devise (4.4.3)
110
- bcrypt (~> 3.0)
111
- orm_adapter (~> 0.1)
112
- railties (>= 4.1.0, < 6.0)
113
- responders
114
- warden (~> 1.2.3)
115
- diff-lcs (1.3)
116
- erubi (1.7.0)
117
- factory_bot (4.8.2)
118
- activesupport (>= 3.0.0)
119
- faraday (0.12.2)
120
- multipart-post (>= 1.2, < 3)
121
- generator_spec (0.9.4)
122
- activesupport (>= 3.0.0)
123
- railties (>= 3.0.0)
124
- globalid (0.4.0)
125
- activesupport (>= 4.2.0)
126
- hashdiff (0.3.7)
127
- hashie (3.5.7)
128
- i18n (0.8.6)
129
- jwt (1.5.6)
130
- loofah (2.1.1)
131
- crass (~> 1.0.2)
132
- nokogiri (>= 1.5.9)
133
- mail (2.6.6)
134
- mime-types (>= 1.16, < 4)
135
- method_source (0.9.0)
136
- mime-types (3.1)
137
- mime-types-data (~> 3.2015)
138
- mime-types-data (3.2016.0521)
139
- mini_mime (1.0.0)
140
- mini_portile2 (2.3.0)
141
- minitest (5.10.3)
142
- multi_json (1.13.1)
143
- multi_xml (0.6.0)
144
- multipart-post (2.0.0)
145
- nio4r (2.1.0)
146
- nokogiri (1.8.1)
147
- mini_portile2 (~> 2.3.0)
148
- oauth2 (1.4.0)
149
- faraday (>= 0.8, < 0.13)
150
- jwt (~> 1.0)
151
- multi_json (~> 1.3)
152
- multi_xml (~> 0.5)
153
- rack (>= 1.2, < 3)
154
- omniauth (1.8.1)
155
- hashie (>= 3.4.6, < 3.6.0)
156
- rack (>= 1.6.2, < 3)
157
- omniauth-facebook (4.0.0)
158
- omniauth-oauth2 (~> 1.2)
159
- omniauth-google-oauth2 (0.5.3)
160
- jwt (>= 1.5)
161
- omniauth (>= 1.1.1)
162
- omniauth-oauth2 (>= 1.5)
163
- omniauth-oauth2 (1.5.0)
164
- oauth2 (~> 1.1)
165
- omniauth (~> 1.2)
166
- orm_adapter (0.5.0)
167
- pry (0.11.3)
168
- coderay (~> 1.1.0)
169
- method_source (~> 0.9.0)
170
- public_suffix (3.0.2)
171
- rack (2.0.3)
172
- rack-test (0.7.0)
173
- rack (>= 1.0, < 3)
174
- rails-dom-testing (2.0.3)
175
- activesupport (>= 4.2.0)
176
- nokogiri (>= 1.6)
177
- rails-html-sanitizer (1.0.3)
178
- loofah (~> 2.0)
179
- rake (12.1.0)
180
- responders (2.4.0)
181
- actionpack (>= 4.2.0, < 5.3)
182
- railties (>= 4.2.0, < 5.3)
183
- rspec-core (3.6.0)
184
- rspec-support (~> 3.6.0)
185
- rspec-expectations (3.6.0)
186
- diff-lcs (>= 1.2.0, < 2.0)
187
- rspec-support (~> 3.6.0)
188
- rspec-mocks (3.6.0)
189
- diff-lcs (>= 1.2.0, < 2.0)
190
- rspec-support (~> 3.6.0)
191
- rspec-rails (3.6.1)
192
- actionpack (>= 3.0)
193
- activesupport (>= 3.0)
194
- railties (>= 3.0)
195
- rspec-core (~> 3.6.0)
196
- rspec-expectations (~> 3.6.0)
197
- rspec-mocks (~> 3.6.0)
198
- rspec-support (~> 3.6.0)
199
- rspec-support (3.6.0)
200
- safe_yaml (1.0.4)
201
- sprockets (3.7.1)
202
- concurrent-ruby (~> 1.0)
203
- rack (> 1, < 3)
204
- sprockets-rails (3.2.1)
205
- actionpack (>= 4.0)
206
- activesupport (>= 4.0)
207
- sprockets (>= 3.0.0)
208
- sqlite3 (1.3.13)
209
- thor (0.20.0)
210
- thread_safe (0.3.6)
211
- tzinfo (1.2.3)
212
- thread_safe (~> 0.1)
213
- warden (1.2.7)
214
- rack (>= 1.0)
215
- webmock (3.3.0)
216
- addressable (>= 2.3.6)
217
- crack (>= 0.3.2)
218
- hashdiff
219
- websocket-driver (0.6.5)
220
- websocket-extensions (>= 0.1.0)
221
- websocket-extensions (0.1.2)
222
- xpath (3.0.0)
223
- nokogiri (~> 1.8)
224
-
225
- PLATFORMS
226
- ruby
227
-
228
- DEPENDENCIES
229
- appraisal (~> 2.2.0)
230
- arel!
231
- capybara (~> 2.18.0)
232
- database_cleaner (~> 1.6.2)
233
- devise (~> 4.4.3)
234
- doorkeeper!
235
- doorkeeper-grants_assertion!
236
- factory_bot (~> 4.8.2)
237
- generator_spec (~> 0.9.4)
238
- omniauth-facebook (~> 4.0.0)
239
- omniauth-google-oauth2 (~> 0.5.3)
240
- omniauth-oauth2 (~> 1.5.0)
241
- pry (>= 0.11.3)
242
- rails!
243
- rspec-rails (>= 2.11.4)
244
- sqlite3
245
- webmock (~> 3.3.0)
246
-
247
- BUNDLED WITH
248
- 1.16.2