omniauth-rails 0.5.0 → 0.6.0
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.
- checksums.yaml +4 -4
- data/app/controllers/omniauth/rails/authorization_concern.rb +26 -6
- data/app/models/omniauth/rails/authentication_request.rb +7 -0
- data/app/models/omniauth/rails/authentication_session.rb +11 -0
- data/lib/omniauth/rails/configuration.rb +1 -0
- data/lib/omniauth/rails/configurator.rb +7 -2
- data/lib/omniauth/rails/version.rb +1 -1
- data/spec/controllers/authorization_concern_spec.rb +57 -0
- data/spec/examples.txt +25 -23
- data/spec/test_app/app/views/layouts/application.html.erb +1 -1
- data/spec/test_app/log/test.log +1387 -0
- metadata +4 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Rabinowitz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: byebug
|
@@ -209,6 +209,7 @@ files:
|
|
209
209
|
- lib/tasks/mutant.rake
|
210
210
|
- spec/controllers/application_controller_spec.rb
|
211
211
|
- spec/controllers/authentication_concern_spec.rb
|
212
|
+
- spec/controllers/authorization_concern_spec.rb
|
212
213
|
- spec/examples.txt
|
213
214
|
- spec/helpers/application_helper_spec.rb
|
214
215
|
- spec/lib/omniauth/rails/configurator_spec.rb
|
@@ -357,6 +358,7 @@ summary: A Rails Engine to make it as easy as possible to add oauth authenticati
|
|
357
358
|
test_files:
|
358
359
|
- spec/controllers/application_controller_spec.rb
|
359
360
|
- spec/controllers/authentication_concern_spec.rb
|
361
|
+
- spec/controllers/authorization_concern_spec.rb
|
360
362
|
- spec/examples.txt
|
361
363
|
- spec/helpers/application_helper_spec.rb
|
362
364
|
- spec/lib/omniauth/rails/configurator_spec.rb
|