concerto_shib_auth 0.0.2 → 0.0.3
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 +8 -8
- data/lib/concerto_shib_auth/engine.rb +3 -3
- data/lib/concerto_shib_auth/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NjdiMzljODAwNmJjMjJhMWIzZmVkZDZiODI2MjQ2YzcxOTQwMTgxNA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NDliMTMwMDhhYTk0NDE1OWRlMjFjY2U3MjA4ZDUyNjhjNDFmN2FkNA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzU2OGRhNmUxOWQzZGVhZTY5ZDcyMzhmZWYwYmQ0NWNhYWYzYzYzZGE0NzJm
|
|
10
|
+
YjgzMjNlZjE5ZjU5ZTk2ZDZmNTg3OWE4OTA0ZGRkNTdjN2I4Y2JhNDk5NTVl
|
|
11
|
+
OWQ4NzNmMDQ2N2FjNjUxMWRhYzcyNzZjNDM1MzAzNGRmOGVjMmQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZGRjMWQyZjBmOWJiNDcwZWNmNzJjZjQ0OGJhYzc1ZTQxMjhiZDcyZmQyNDkz
|
|
14
|
+
MWMwMDViNzFmOGRhNzIyMzliOTBhYWY2MjUyZGQ3ZDc2NTkzZWY3MGJlMTll
|
|
15
|
+
ZTE4ODVlMWE3ZWU1YzFhMGI1YzhkMDAxN2E0OTEzZDg0NTNkMDk=
|
|
@@ -6,19 +6,19 @@ module ConcertoCasAuth
|
|
|
6
6
|
|
|
7
7
|
class Engine < ::Rails::Engine
|
|
8
8
|
isolate_namespace ConcertoShibAuth
|
|
9
|
-
engine_name '
|
|
9
|
+
engine_name 'concerto_shib_auth'
|
|
10
10
|
|
|
11
11
|
# Define plugin information for the Concerto application to read.
|
|
12
12
|
# Do not modify @plugin_info outside of this static configuration block.
|
|
13
13
|
def plugin_info(plugin_info_class)
|
|
14
14
|
@plugin_info ||= plugin_info_class.new do
|
|
15
15
|
|
|
16
|
-
# Add our
|
|
16
|
+
# Add our concerto_shib_auth route to the main application
|
|
17
17
|
add_route("concerto_shib_auth", ConcertoCasAuth::Engine)
|
|
18
18
|
|
|
19
19
|
# View hook to override Devise sign in links in the main application
|
|
20
20
|
add_view_hook "ApplicationController", :signin_hook,
|
|
21
|
-
:partial => "
|
|
21
|
+
:partial => "concerto_shib_auth/omniauth_shibboleth/signin"
|
|
22
22
|
|
|
23
23
|
end
|
|
24
24
|
end
|