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 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, OmniAuth::Strategies::Aai::DEFAULT_EXTRA_FIELDS
56
+ :extra_fields => OmniAuth::Strategies::Aai::DEFAULT_EXTRA_FIELDS
57
57
  } if Rails.env == 'development'
58
58
  end
59
59
 
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module Aai
3
- VERSION = "0.1"
3
+ VERSION = "0.2"
4
4
  end
5
5
  end
@@ -1,3 +1,4 @@
1
+ require 'omniauth-shibboleth'
1
2
  module OmniAuth
2
3
  module Strategies
3
4
  class Aai < OmniAuth::Strategies::Shibboleth
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.1'
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