omniauth-aai 0.1 → 0.2
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.
- data/README.md +2 -2
- data/lib/omniauth-aai/version.rb +1 -1
- data/lib/omniauth/strategies/aai.rb +1 -0
- data/omniauth-aai-0.1.gem +0 -0
- metadata +2 -1
data/README.md
CHANGED
|
@@ -49,11 +49,11 @@ SWITCHaai strategy just checks the existence of Shib-Session-ID or Shib-Applicat
|
|
|
49
49
|
In development / local mode you can use the following mock (with default SWITCHaai values):
|
|
50
50
|
|
|
51
51
|
# config/initializer/omniauth.rb
|
|
52
|
-
use OmniAuth::Builder do
|
|
52
|
+
Rails.application.config.middleware.use OmniAuth::Builder do
|
|
53
53
|
provider :developer, {
|
|
54
54
|
:uid_field => :'persistent-id',
|
|
55
55
|
:fields => OmniAuth::Strategies::Aai::DEFAULT_FIELDS,
|
|
56
|
-
:extra_fields
|
|
56
|
+
:extra_fields => OmniAuth::Strategies::Aai::DEFAULT_EXTRA_FIELDS
|
|
57
57
|
} if Rails.env == 'development'
|
|
58
58
|
end
|
|
59
59
|
|
data/lib/omniauth-aai/version.rb
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omniauth-aai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0.
|
|
4
|
+
version: '0.2'
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -108,6 +108,7 @@ files:
|
|
|
108
108
|
- lib/omniauth/strategies/aai.rb
|
|
109
109
|
- lib/omniauth-aai/version.rb
|
|
110
110
|
- lib/omniauth-aai.rb
|
|
111
|
+
- omniauth-aai-0.1.gem
|
|
111
112
|
- omniauth-aai.gemspec
|
|
112
113
|
- Rakefile
|
|
113
114
|
- README.md
|