devise_cas_authenticatable 1.7.0 → 1.7.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 982f05c3b4f817eeeb431e6a342014e70beca12b
|
4
|
+
data.tar.gz: 880dcb8f9fd445e2e3d19de68abd6d202484434e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db03ed7056af129f37a7dfcdf8cb9486484f69e5a739060eca124087a2146affbc108cc37c42dfe1f2411041846c0b4e5414fb2bb5e0c36c7ef10c332e9b42cd
|
7
|
+
data.tar.gz: 8bd1b15e5740dda654de992bbe12e68ad85138e2a130440c944ac5253cdc7291a6fd3a70403b8f22fbb16cb2841f778f051ca4c2f54b4b626acb37b1edea3945
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{devise_cas_authenticatable}
|
5
|
-
s.version = "1.7.
|
5
|
+
s.version = "1.7.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Nat Budin", "Jeremy Haile"]
|
@@ -5,7 +5,10 @@ module Devise
|
|
5
5
|
def self.prepare_class
|
6
6
|
Class.new(self) do
|
7
7
|
include Rails.application.routes.url_helpers
|
8
|
-
|
8
|
+
|
9
|
+
if Rails.application.routes.respond_to?(:mounted_helpers) && Rails.application.routes.mounted_helpers
|
10
|
+
include Rails.application.routes.mounted_helpers
|
11
|
+
end
|
9
12
|
end
|
10
13
|
end
|
11
14
|
|
@@ -21,7 +21,7 @@ if defined? ActionDispatch::Routing
|
|
21
21
|
|
22
22
|
def raise_no_secret_key #:nodoc:
|
23
23
|
# Devise_cas_authenticatable does not store passwords, so does not need a secret!
|
24
|
-
logger.warn <<-WARNING
|
24
|
+
Rails.logger.warn <<-WARNING
|
25
25
|
Devise_cas_authenticatable has suppressed an exception from being raised for missing Devise.secret_key.
|
26
26
|
If devise_cas_authenticatable is the only devise module you are using for authentication you can safely ignore this warning.
|
27
27
|
However, if you use another module that requires the secret_key please follow these instructions from Devise:
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devise_cas_authenticatable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nat Budin
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-02-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: devise
|